From 8d0ef25aec503564953d558043244379a8c53831 Mon Sep 17 00:00:00 2001 From: Pharap <2933055+Pharap@users.noreply.github.com> Date: Tue, 19 Nov 2019 20:52:37 +0000 Subject: [PATCH] Correct minor mistakes --- extras/AFixedPointPrimer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/AFixedPointPrimer.md b/extras/AFixedPointPrimer.md index 3413465..31a76ae 100644 --- a/extras/AFixedPointPrimer.md +++ b/extras/AFixedPointPrimer.md @@ -7,7 +7,7 @@ Integers are numbers that do not have a fractional component in them. For example 0, 1, 42, 128, 10000 are all integers Numbers that do have a fractional component are called 'rational' numbers. -They are often represented either as fractions or as numbers with a 'radix point'in them (often called a 'decimal point' in day-to-day maths) +They are often represented either as fractions or as numbers with a 'radix point' in them (often called a 'decimal point' in day-to-day maths). For example 0.5, 1.75, 42.42, 128.367 and 10000.00001 are all rational numbers. Normally computers represent these in what is called a 'floating point' format.