Skip to content

Commit bd256ef

Browse files
authored
docs: Fix grammar error
1 parent e53db5d commit bd256ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The blog goes into a bit more in detail about how it works with a simplistic ver
3838
The library is not meant as a general replacement for the `StringBuilder` shipped with the .net framework itself. You can head over to the documentation and read about the ["Known limitations"](https://linkdotnet.github.io/StringBuilder/articles/known_limitations.html).
3939
The library works best for a small to medium amount of strings (not multiple 100'000 characters, even though it can be still faster and uses fewer allocations). At any time, you can convert the `ValueStringBuilder` to a "normal" `StringBuilder` and vice versa.
4040

41-
The normal use case is to add concatenate strings in a hot path where the goal is to put as minimal pressure on the GC as possible.
41+
The normal use case is to concatenate strings in a hot path where the goal is to put as minimal pressure on the GC as possible.
4242

4343
## Documentation
4444
More detailed documentation can be found [here](https://linkdotnet.github.io/StringBuilder/). It is really important to understand how the `ValueStringBuilder` works so that you did not run into weird situations where performance/allocations can even rise.

0 commit comments

Comments
 (0)