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:
Louis Seubert 2026-07-12 18:28:33 +02:00
commit 06a40184ee
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
2 changed files with 5 additions and 1 deletions

View file

@ -45,6 +45,10 @@ To have a consistent experience across all packages, some public interfaces have
### Changed ### Changed
### Fixed
- **request.result:** Correct the namespace in the `Prelude` doc comment (`Geekeey.Extensions.Result``Geekeey.Request.Result`)
### Removed ### Removed
[1.0.0]: https://code.geekeey.de/geekeey/request/releases/tag/1.0.0 [1.0.0]: https://code.geekeey.de/geekeey/request/releases/tag/1.0.0

View file

@ -9,7 +9,7 @@ namespace Geekeey.Request.Result;
/// A class containing various utility methods, a 'prelude' to the rest of the library. /// A class containing various utility methods, a 'prelude' to the rest of the library.
/// </summary> /// </summary>
/// <remarks> /// <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. /// Recommended to be imported globally via a global using statement.
/// </remarks> /// </remarks>
public static class Prelude public static class Prelude