Skip to content

Commit e384deb

Browse files
arkamarsomasis
authored andcommitted
Fix few typos
1 parent e605a1f commit e384deb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ ensure that all documentation and information on the wiki is verified to be
1717
correct and reasonably good quality.
1818

1919
When making edits for submission, you may want to run `make lint` in order to ensure
20-
that your newly-added documentation or edits are adherant to the markdown
20+
that your newly-added documentation or edits are adherent to the markdown
2121
style. However, it's not really necessary to test locally; Travis CI tests all
2222
pull-requests and runs lint on them, and fails if the new commits introduce warnings.
2323

2424
In addition to editing locally, you can also edit online.
2525
For creating new pages, click GitHub's "Create New File" button, type the page
2626
filename (so, \<filename\>.md), and begin editing there. You can also edit pages
2727
the same way by going into the wiki directory, clicking a page (the filenames
28-
corrispond to the page titles) and clicking the edit button next to history.
28+
correspond to the page titles) and clicking the edit button next to history.
2929

mathematical-library.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ IEEE-754 binary128 (ld128).
1515
Supported arithmetics evaluations (provided by the underlying platform and
1616
compiler) are FLT_EVAL_METHOD 0, 1 or 2 (when FLT_EVAL_METHOD!=0 the excess
1717
precision and range should be handled according to the ISO C semantics: rounded
18-
away at assingments and casts).
18+
away at assignments and casts).
1919

2020
The four rounding modes (FE_TONEAREST, FE_UPWARD, FE_DOWNWARD, FE_TOWARDZERO)
2121
are supported on all platforms with fenv support.
@@ -249,7 +249,7 @@ The standard does not require correct rounding for decimal float constants (the
249249
converted floating-point value can be the nearest or any neighbor of the nearest
250250
representible number, but the recommended practice is correct rounding according
251251
to nearest rounding mode), however hexfloats can represent all values of a type
252-
exactly and unambigously, so the convention is to prefer hexfloat representation
252+
exactly and unambiguously, so the convention is to prefer hexfloat representation
253253
in the math code internally especially when it makes the intention clearer (eg
254254
0x1p52 instead of 4503599627370496.0). (In public header files they must not be
255255
used as they are not C++ or C89 compatible).

0 commit comments

Comments
 (0)