diff options
author | Nico Weber <thakis@chromium.org> | 2014-09-23 13:32:38 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2014-09-23 20:33:21 +0000 |
commit | 7b78a8dbc36706b46328393912b5cc488b3ab358 (patch) | |
tree | c4e34b500b9c0e4c28f208f175fcb156be89eebe | |
parent | 019d40fa03d9135e7db9d04c2c132af5a05e3dc2 (diff) | |
download | chromium_src-7b78a8dbc36706b46328393912b5cc488b3ab358.zip chromium_src-7b78a8dbc36706b46328393912b5cc488b3ab358.tar.gz chromium_src-7b78a8dbc36706b46328393912b5cc488b3ab358.tar.bz2 |
Fix some spelling.
BUG=none
TBR=awong
Review URL: https://codereview.chromium.org/598453005
Cr-Commit-Position: refs/heads/master@{#296215}
-rw-r--r-- | styleguide/c++/c++11.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html index 8370774..9a7d663 100644 --- a/styleguide/c++/c++11.html +++ b/styleguide/c++/c++11.html @@ -361,7 +361,7 @@ Tip of the Week #54: Controlling Your Inheritance</a></td> <td><code>for (<i>type</i> <i>var</i> : <i>range</i>)</code></td> <td>Facilitates a more concise syntax for iterating over the elements of a container (or a range of iterators) in a <code>for</code> loop</td> -<td>TODO: documentation link/a></td> +<td>TODO: documentation link</td> <td></td> </tr> @@ -370,7 +370,7 @@ of a container (or a range of iterators) in a <code>for</code> loop</td> <td><code>string <i>var</i>=R"(<i>raw_string</i>)";</code></td> <td>Allows a string to be encoded without any escape sequences, easing parsing in regex expressions, for example</td> -<td>TODO: documentation linkRaw String Literals</a></td> +<td>TODO: documentation link</td> <td></td> </tr> @@ -378,7 +378,7 @@ sequences, easing parsing in regex expressions, for example</td> <td>Rvalue References (and Move Semantics)</td> <td><code>T(T&& t)</code> and <code>T& operator=(T&& t)</code></td> <td>Reference that only binds to a temporary object</td> -<td>TODO: documentation linkstruction and assignment</a></td> +<td>TODO: documentation link</td> <td></td> </tr> |