From 754e11ade7c5c6e96d7dfe5278d2c5731f730e50 Mon Sep 17 00:00:00 2001 From: Bill Jacobs Date: Mon, 23 May 2016 13:57:28 -0700 Subject: [PATCH] Escaped "<" and ">" This escapes the "<" and ">" characters in README.md. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0883fb752..4d6f181da 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ augmented) # Example
 /** Red-black tree augmented by the sum of the values in the subtree. */
-public class SumNode extends RedBlackNode {
+public class SumNode extends RedBlackNode<SumNode> {
     public int value;
     public int sum;