Skip to content

Commit a54c502

Browse files
committed
#132 <> HashMap doc fix
1 parent a2f2341 commit a54c502

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

content/api_en/include/HashMap.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Map;
1616
1717
// Note the HashMap's "key" is a String and "value" is an Integer
18-
HashMap<String,Integer> hm = new HashMap<String,Integer>();
18+
HashMap&lt;String,Integer&gt; hm = new HashMap&lt;String,Integer&gt;();
1919
2020
// Putting key-value pairs in the HashMap
2121
hm.put("Ava", 1);
@@ -45,10 +45,10 @@ For a list of the numerous <b>HashMap</b> features, please read the <a href="htt
4545
<syntax></syntax>
4646

4747
<constructor>
48-
HashMap&gt;Key, Value&lt;()
49-
HashMap&gt;Key, Value&lt;(<c>initialCapacity</c>)
50-
HashMap&gt;Key, Value&lt;(<c>initialCapacity</c>, <c>loadFactor</c>)
51-
HashMap&gt;Key, Value&lt;(<c>m</c>)
48+
HashMap&lt;Key, Value&gt;()
49+
HashMap&lt;Key, Value&gt;(<c>initialCapacity</c>)
50+
HashMap&lt;Key, Value&gt;(<c>initialCapacity</c>, <c>loadFactor</c>)
51+
HashMap&lt;Key, Value&gt;(<c>m</c>)
5252
</constructor>
5353

5454
<cparameter>

0 commit comments

Comments
 (0)