summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-10-04 12:34:29 +0200
committerGitHub <noreply@github.com>2021-10-04 12:34:29 +0200
commit500d5f0f38dc59895908f25f2c43c2a4c61d7874 (patch)
tree60733c91c670952312480529a570b4162d6c36c2
parent97c24dd54892a1f256707bc73230fe5443be36ce (diff)
downloadNim-500d5f0f38dc59895908f25f2c43c2a4c61d7874.tar.gz
typo [backport] (#18948)
-rw-r--r--doc/manual.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.rst b/doc/manual.rst
index dfcf0ba54..4b212fe19 100644
--- a/doc/manual.rst
+++ b/doc/manual.rst
@@ -1201,7 +1201,7 @@ The only operations that are affected by the `floatChecks` pragma are
 the `+`, `-`, `*`, `/` operators for floating-point types.
 
 An implementation should always use the maximum precision available to evaluate
-floating pointer values during semantic analysis; this means expressions like
+floating-point values during semantic analysis; this means expressions like
 `0.09'f32 + 0.01'f32 == 0.09'f64 + 0.01'f64` that are evaluating during
 constant folding are true.