From 0f4a17ff13226a487cae581f6a13b75f4ea12ebc Mon Sep 17 00:00:00 2001 From: Nathan Day Date: Wed, 31 Oct 2018 20:17:49 +1300 Subject: [PATCH] Update README.md Minor changes to README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 771a59b..dc6d78c 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,13 @@ Struct, `Rational` to represent a rational number with a numerator and denominat ## Features -RationalNumeric represents type that have a numerator and a denominator, supports basic math operations by implementing the -protocol `SignedNumeric` through the protocol RationalNumeric. Its usefully when you need to deall with ratio without loss of precission. +RationalNumeric represents types that have a numerator and a denominator and support basic math operations by +implementing the protocol `SignedNumeric` through the protocol RationalNumeric. Its usefully when you need to deal +with ratios without loss of precission. -The sole type of RationalNumeric is Rational, Rational will be reduce to their simplest form, as a consequence the initialiser -of the form `Rational(Int,Int) can potentially be slow finding the largest common division for the numerator and denominator. Requires Swift 4.2. +The sole type of RationalNumeric is Rational, Rational will always be reduce to its simplest form, as a consequence +the initialiser of the form `Rational(Int,Int) can potentially be slow finding the largest common division for +the numerator and denominator. Requires Swift 4.2. ## Including in your project