Skip to content

Commit fb1ffff

Browse files
committed
Linked known limitations in README.md
1 parent aa665ba commit fb1ffff

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
@@ -25,7 +25,7 @@ If you want to know how the `ValueStringBuilder` works and why it uses allocatio
2525
The blog goes a bit more in detail how it works with a simplistic version of the `ValueStringBuilder`.
2626

2727
## What it doesn't solve!
28-
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".
28+
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).
2929
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 less allocations). At anytime you can convert the `ValueStringBuilder` to a "normal" `StringBuilder` and vice versa.
3030

3131
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.

0 commit comments

Comments
 (0)