Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badeend committed May 29, 2024
1 parent ddc6ba8 commit aec1ea7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Badeend.ValueCollections/ValueSlice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public int LastIndexOf(T item)
}

/// <summary>
/// Returns <see langword="true"/> when the <c>this</c> slice
/// Returns <see langword="true"/> when <c>this</c> slice
/// contains the specified <paramref name="item"/>.
/// </summary>
[Pure]
Expand Down
1 change: 1 addition & 0 deletions Badeend.ValueCollections/nuget-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ In general, the performance and memory usage is equivalent to the regular `Syste
May I interest you in one of my other packages?

- **[Badeend.ValueCollections](https://badeend.github.io/ValueCollections/)**: _Low overhead immutable collection types with structural equality._
- **[Badeend.EnumClass](https://badeend.github.io/EnumClass/)**: _Discriminated unions for C# with exhaustiveness checking._
- **[Badeend.Result](https://badeend.github.io/Result/)**: _For failures that are not exceptional: `Result<T,E>` for C#._
- **[Badeend.Any](https://badeend.github.io/Any/)**: _Holds any value of any type, without boxing small structs (up to 8 bytes)._
- **[Badeend.Nothing](https://github.com/badeend/Nothing)**: _If you want to use `void` as a type parameter, but C# won't let you._
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ More information at: https://badeend.github.io/ValueCollections/
May I interest you in one of my other packages?

- **[Badeend.ValueCollections](https://badeend.github.io/ValueCollections/)**: _Low overhead immutable collection types with structural equality._
- **[Badeend.EnumClass](https://badeend.github.io/EnumClass/)**: _Discriminated unions for C# with exhaustiveness checking._
- **[Badeend.Result](https://badeend.github.io/Result/)**: _For failures that are not exceptional: `Result<T,E>` for C#._
- **[Badeend.Any](https://badeend.github.io/Any/)**: _Holds any value of any type, without boxing small structs (up to 8 bytes)._
- **[Badeend.Nothing](https://github.com/badeend/Nothing)**: _If you want to use `void` as a type parameter, but C# won't let you._
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ var newList = existingList.ToBuilder()
.Add(4)
.Add(5)
.Add(6)
.Remove()
.RemoveFirst(4)
.Build();
```

Expand Down

0 comments on commit aec1ea7

Please sign in to comment.