fix(result): correct wrong namespace in Prelude doc comment
The doc comment referenced `Geekeey.Extensions.Result.Prelude` but the actual namespace is `Geekeey.Request.Result`, so the suggested using directive would not compile.
This commit is contained in:
parent
eff887b49f
commit
06a40184ee
2 changed files with 5 additions and 1 deletions
|
|
@ -45,6 +45,10 @@ To have a consistent experience across all packages, some public interfaces have
|
|||
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
|
||||
- **request.result:** Correct the namespace in the `Prelude` doc comment (`Geekeey.Extensions.Result` → `Geekeey.Request.Result`)
|
||||
|
||||
### Removed
|
||||
|
||||
[1.0.0]: https://code.geekeey.de/geekeey/request/releases/tag/1.0.0
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ namespace Geekeey.Request.Result;
|
|||
/// A class containing various utility methods, a 'prelude' to the rest of the library.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This class is meant to be imported statically, e.g. <c>using static Geekeey.Extensions.Result.Prelude;</c>.
|
||||
/// This class is meant to be imported statically, e.g. <c>using static Geekeey.Request.Result.Prelude;</c>.
|
||||
/// Recommended to be imported globally via a global using statement.
|
||||
/// </remarks>
|
||||
public static class Prelude
|
||||
|
|
|
|||
Loading…
Reference in a new issue