8179364: update "<a name=" in java.base module to use id attribute

Reviewed-by: darcy
This commit is contained in:
Jonathan Gibbons 2017-04-26 13:38:21 -07:00
parent f0d6ffcccc
commit 1838d55322
58 changed files with 182 additions and 182 deletions

View file

@ -56,7 +56,7 @@ import jdk.internal.HotSpotIntrinsicCandidate;
* <li><a href="http://www.unicode.org">http://www.unicode.org</a>
* </ul>
*
* <h3><a name="unicode">Unicode Character Representations</a></h3>
* <h3><a id="unicode">Unicode Character Representations</a></h3>
*
* <p>The {@code char} data type (and therefore the value that a
* {@code Character} object encapsulates) are based on the
@ -70,9 +70,9 @@ import jdk.internal.HotSpotIntrinsicCandidate;
* definition</i></a> of the U+<i>n</i> notation in the Unicode
* Standard.)
*
* <p><a name="BMP">The set of characters from U+0000 to U+FFFF</a> is
* <p><a id="BMP">The set of characters from U+0000 to U+FFFF</a> is
* sometimes referred to as the <em>Basic Multilingual Plane (BMP)</em>.
* <a name="supplementary">Characters</a> whose code points are greater
* <a id="supplementary">Characters</a> whose code points are greater
* than U+FFFF are called <em>supplementary character</em>s. The Java
* platform uses the UTF-16 representation in {@code char} arrays and
* in the {@code String} and {@code StringBuffer} classes. In