Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix a typo, some clarification, etc.
  • Loading branch information
jk-jeon authored Aug 28, 2024
1 parent 9f6d768 commit 3ba3d7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subproject/simple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This is a simplified implementation of the algorithm, that closely follows the
one in `include/dragonbox/dragonbox.h`, but aims to be shorter overall, use less
C++ template indirection, and offer less flexibility and performance for the
sake of simpliciy.
sake of simplicity.

Simplifications over the implementation in `include/dragonbox/dragonbox.h` are
made based primarily on the following assumptions:
Expand All @@ -14,7 +14,7 @@ made based primarily on the following assumptions:
implementation).
- No need to support the `fast` digit-generation policy (always uses `compact`).
- `if constexpr` is available (C++17).
- `float` and `double` use IEEE-754 32-bit and 64-bit representations,
- `float` and `double` use [IEEE-754 binary32](https://en.wikipedia.org/wiki/Single-precision_floating-point_format) and [IEEE-754 binary64](https://en.wikipedia.org/wiki/Double-precision_floating-point_format) representations,
respectively.
- A modern compiler and standard library are available.

Expand Down

0 comments on commit 3ba3d7b

Please sign in to comment.