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
|
|
@ -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