Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeaye committed Dec 30, 2023
1 parent 863c26e commit 5d77275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/src/blog/2023-12-30-fast-string.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ string is full, since the two flag bits will be 0 and the remaining capacity
will be 0, thus the byte will be 0.

This means folly's string allows for 23 bytes of small string data in a 24 byte
string. That's `23:34 = 0.958`, compared to the previous `15:32 = 0.469`. Our
string. That's `23:24 = 0.958`, compared to the previous `15:32 = 0.469`. Our
string is 24 bytes, compared to previous 32 bytes, too! A very impressive design.

## Empty member optimization
Expand Down

0 comments on commit 5d77275

Please sign in to comment.