Skip to content

Commit 409bce1

Browse files
authored
Merge pull request #9 from Felix-CodingClimber/FelixCCWork-fixReadme
Fixed namespace in Readme example
2 parents e056c4d + 0948803 commit 409bce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ There are helper functions like `Fail()`, `Ok()` or `TryGetValue(out string? res
1515

1616
2. Add the following to a GlobalUsing.cs
1717
```cs
18-
global using static DotNetElements.Core.Result.ResultHelper;
18+
global using static DotNetElements.Core.ResultObject.ResultHelper;
1919
```
2020

2121
## Usage examples for basic Result and Result<TValue> types
@@ -135,4 +135,4 @@ else
135135
CrudResult crudResultWithoutValue = crudResult.AsCrudResult();
136136
Result<string> simpleResultWithValue = crudResult.AsResultWithValue();
137137
Result simpleResultWithoutValue = crudResult.AsResult();
138-
```
138+
```

0 commit comments

Comments
 (0)