Skip to content

Commit 8f2a564

Browse files
authored
Merge pull request simdjson#983 from TkTech/patch-1
Fix documentation links in basics.md
2 parents c3b25e1 + 84806cc commit 8f2a564

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/basics.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The parsed document resulting from the `parser.load` and `parser.parse` calls de
9090

9191
During the`load` or `parse` calls, neither the input file nor the input string are ever modified. After calling `load` or `parse`, the source (either a file or a string) can be safely discarded. All of the JSON data is stored in the `parser` instance. The parsed document is also immutable in simdjson: you do not modify it by accessing it.
9292

93-
For best performance, a `parser` instance should be reused over several files: otherwise you will needlessly reallocate memory, an expensive process. It is also possible to avoid entirely memory allocations during parsing when using simdjson. [See our performance notes for details](https://github.com/simdjson/simdjson/blob/master/doc/performance.md).
93+
For best performance, a `parser` instance should be reused over several files: otherwise you will needlessly reallocate memory, an expensive process. It is also possible to avoid entirely memory allocations during parsing when using simdjson. [See our performance notes for details](performance.md).
9494

9595

9696
Using the Parsed JSON
@@ -534,7 +534,7 @@ Thread Safety
534534

535535
We built simdjson with thread safety in mind.
536536

537-
The simdjson library is single-threaded except for [`parse_many`](https://github.com/simdjson/simdjson/blob/master/doc/parse_many.md) which may use secondary threads under its control when the library is compiled with thread support.
537+
The simdjson library is single-threaded except for [`parse_many`](parse_many.md) which may use secondary threads under its control when the library is compiled with thread support.
538538

539539

540540
We recommend using one `dom::parser` object per thread in which case the library is thread-safe.
@@ -556,6 +556,6 @@ may be moved or removed in future versions.
556556
Further Reading
557557
-------------
558558

559-
* [Performance](doc/performance.md) shows some more advanced scenarios and how to tune for them.
560-
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
559+
* [Performance](performance.md) shows some more advanced scenarios and how to tune for them.
560+
* [Implementation Selection](implementation-selection.md) describes runtime CPU detection and
561561
how you can work with it.

0 commit comments

Comments
 (0)