summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorMarcel Ribeiro Dantas <ribeirodantasdm@gmail.com>2022-12-10 12:08:26 -0300
committerGitHub <noreply@github.com>2022-12-10 12:08:26 -0300
commit97a2a383c6b2f503ed2febd07bc950d1e95e54bb (patch)
treecd8fe10053e400fe06009a4dc40cec3b2e5892b6 /c.html.markdown
parent354fe6fe7dd8085b88b0b1a2af2f5e612fe196f2 (diff)
parentbba9f7df211d63293e2a957872d156a0a6dfcd48 (diff)
Merge pull request #4560 from mribeirodantas/fix-typos-en
Fixes typos in many different English articles
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index cd6b5ad2..ef341abf 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -256,7 +256,7 @@ int main (int argc, char** argv)
// Floating-point numbers are defined by IEEE 754, thus cannot store perfectly
// exact values. For instance, the following does not produce expected results
- // because 0.1 might actually be 0.099999999999 insided the computer, and 0.3
+ // because 0.1 might actually be 0.099999999999 inside the computer, and 0.3
// might be stored as 0.300000000001.
(0.1 + 0.1 + 0.1) != 0.3; // => 1 (true)
// and it is NOT associative due to reasons mentioned above.