com php-langspec: Fix a typo in the float-literal rule: spec/09-lexical-structure.md spec/19-grammar.md

[email protected] (Nikita Popov) Sun, 24 Apr 2016 12:19:07 +0000
Newsgroups php.standards.cvs
Message-ID <[email protected]>
Commit:    6bc96e485601f84620b1565cc1b026790f69f141
Author:    Ivan Enderlin <[email protected]>         Sun, 24 Apr 2016 13:47:37 +0200
Committer: Nikita Popov <[email protected]>      Sun, 24 Apr 2016 14:19:07 +0200
Parents:   23b8abc8a3a30de8c1f81173cb9d6be267f2df84
Branches:  PHP-5.6 PHP-7.0 master

Link:       http://git.php.net/?p=php-langspec.git;a=commitdiff;h=6bc96e485601f84620b1565cc1b026790f69f141

Log:
Fix a typo in the float-literal rule

Changed paths:
  M  spec/09-lexical-structure.md
  M  spec/19-grammar.md


Diff:
diff --git a/spec/09-lexical-structure.md b/spec/09-lexical-structure.md
index 6275c4d..f0c2671 100644
--- a/spec/09-lexical-structure.md
+++ b/spec/09-lexical-structure.md
@@ -433,7 +433,7 @@ On an implementation using 32-bit int representation
 **Syntax**
 
 <pre>
-  <i>floating-literal::</i>
+  <i>floating-literal::</i>
     <i>fractional-literal   exponent-part<sub>opt</sub></i>
     <i>digit-sequence   exponent-part</i>
 
diff --git a/spec/19-grammar.md b/spec/19-grammar.md
index 26e3327..0ae5ad3 100644
--- a/spec/19-grammar.md
+++ b/spec/19-grammar.md
@@ -184,7 +184,7 @@ The grammar notation is described in [Grammars section](09-lexical-structure.md#
 ####Floating-Point Literals
 
 <pre>
-  <i>floating-literal::</i>
+  <i>floating-literal::</i>
     <i>fractional-literal   exponent-part<sub>opt</sub></i>
     <i>digit-sequence   exponent-part</i>