From 83225cc38d0752c6c1b1d91ce7712421ed05c0b7 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 1 Nov 2014 15:34:01 +0100 Subject: [PATCH] Reference: Add missing of's --- src/doc/reference.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index 084309e9978f6..ec9ff38a5999f 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -400,11 +400,11 @@ An _integer literal_ has one of four forms: * A _decimal literal_ starts with a *decimal digit* and continues with any mixture of *decimal digits* and _underscores_. * A _hex literal_ starts with the character sequence `U+0030` `U+0078` - (`0x`) and continues as any mixture hex digits and underscores. + (`0x`) and continues as any mixture of hex digits and underscores. * An _octal literal_ starts with the character sequence `U+0030` `U+006F` - (`0o`) and continues as any mixture octal digits and underscores. + (`0o`) and continues as any mixture of octal digits and underscores. * A _binary literal_ starts with the character sequence `U+0030` `U+0062` - (`0b`) and continues as any mixture binary digits and underscores. + (`0b`) and continues as any mixture of binary digits and underscores. An integer literal may be followed (immediately, without any spaces) by an _integer suffix_, which changes the type of the literal. There are two kinds of