Escaped "<" and ">"

This escapes the "<" and ">" characters in README.md.
This commit is contained in:
Bill Jacobs
2016-05-23 13:57:28 -07:00
parent 389f8ea4e2
commit 754e11ade7

View File

@@ -34,7 +34,7 @@ augmented)
# Example
<pre lang="java">
/** Red-black tree augmented by the sum of the values in the subtree. */
public class SumNode extends RedBlackNode<SumNode> {
public class SumNode extends RedBlackNode&lt;SumNode&gt; {
public int value;
public int sum;