Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bstring/bstrlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ struct tagbstring {
* Take a standard C library style '\0' terminated char buffer and generate
* a bstring with the same contents as the char buffer.
*
* If an error occurs #NULL is returned.
* If an error occurs NULL is returned.
*
* \code
* bstring b = bfromcstr("Hello");
Expand Down
2 changes: 1 addition & 1 deletion doc/comparisons.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ networking/realtime programming. It can be found [online](http://www.and.org/vst
thread safe.

The implementation has an extreme emphasis on performance for nontrivial
actions (adds, inserts and deletes are all constant or roughly O(#operations)
actions (adds, inserts and deletes are all constant or roughly O(\#operations)
time) following the "zero copy" principle. This trades off performance of
trivial functions (character access, char buffer access/coersion, alias
detection) which becomes significantly slower, as well as incremental
Expand Down
Loading