From 8c55c83f471cf338e228f5086d27aa06065ebcb4 Mon Sep 17 00:00:00 2001 From: Tanuj Sharma Date: Wed, 17 Apr 2019 17:15:48 +0530 Subject: [PATCH] fixed typos and reference link syntax (#29188) --- .../data-structures/floating-point-numbers/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guide/english/python/data-structures/floating-point-numbers/index.md b/guide/english/python/data-structures/floating-point-numbers/index.md index 7c36901f16..0a193bbf95 100644 --- a/guide/english/python/data-structures/floating-point-numbers/index.md +++ b/guide/english/python/data-structures/floating-point-numbers/index.md @@ -9,7 +9,7 @@ Float objects can be created using using -Likewise, positive float objects can be prefixed with a unary `+ (`plus) operator with no space before the literal. Usually `+` is omitted: +Likewise, positive float objects can be prefixed with a unary `+` (plus) operator with no space before the literal. Usually `+` is omitted: >>> +3.141592653589793 3.141592653589793 @@ -47,7 +47,7 @@ Note that leading and trailing zero(s) are valid for floating point literals >>> 001e0010 # Same as 1e10 10000000000.0 -The `float` constructor is another way to create `float` objects. +The `float` constructor is another way to create `float` objects. Creating `float` objects with floating point literals is preferred when possible: @@ -105,4 +105,4 @@ The `float` constructor can also be used to make numeric representation of `NaN` >>> float('infinity') inf >>> float('-infinity') - -inf \ No newline at end of file + -inf