am 9647be42: am 0ec3764e: Fix a bug where \' (apostrophe/single quote) was being escaped with &pos instead of the correct &apos.

* commit '9647be429b6b4564dc7b38aca526791a72a1866d':
  Fix a bug where ' (apostrophe/single quote) was being escaped with &pos instead of the correct &apos.
diff --git a/src/com/google/doclava/Stubs.java b/src/com/google/doclava/Stubs.java
index 5ae1dd0..fa82802 100644
--- a/src/com/google/doclava/Stubs.java
+++ b/src/com/google/doclava/Stubs.java
@@ -1104,7 +1104,7 @@
     returnString = returnString.replaceAll("<", "&lt;");
     returnString = returnString.replaceAll(">", "&gt;");
     returnString = returnString.replaceAll("\"", "&quot;");
-    returnString = returnString.replaceAll("'", "&pos;");
+    returnString = returnString.replaceAll("'", "&apos;");
     return returnString;
   }