Minor javadoc fixes CTR
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
index 40fa180..5dd4ff5 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
@@ -304,8 +304,8 @@
      * {@link org.apache.tinkerpop.gremlin.structure.io.Io.Builder#graph(Graph)} method.
      *
      * @deprecated As of release 3.4.0, partially replaced by {@link GraphTraversalSource#io(String)}. Notice
-     * {@link GraphTraversalSource#io(String)} doesn't support read operation from {@link java.io.InputStream}
-     * or write operation to {@link java.io.OutputStream}. Thus for readers or writers which need this functionality
+     * {@link GraphTraversalSource#io(String)} doesn't support read operation from {@code java.io.InputStream}
+     * or write operation to {@code java.io.OutputStream}. Thus for readers or writers which need this functionality
      * are safe to use this deprecated method. There is no intention to remove this method unless all the
      * functionality is replaced by the `io` step of {@link GraphTraversalSource}.
      */
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
index 823142f..b7d5d7b 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoCore.java
@@ -29,8 +29,8 @@
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)
  * @deprecated As of release 3.4.0, partially replaced by {@link GraphTraversalSource#io(String)}. Notice
- * {@link GraphTraversalSource#io(String)} doesn't support read operation from {@link java.io.InputStream} or write
- * operation to {@link java.io.OutputStream}. Thus for readers or writers which need this functionality are safe to
+ * {@link GraphTraversalSource#io(String)} doesn't support read operation from {@code java.io.InputStream} or write
+ * operation to {@code java.io.OutputStream}. Thus for readers or writers which need this functionality are safe to
  * use this deprecated method. There is no intention to remove this method unless all the functionality is replaced
  * by the `io` step of {@link GraphTraversalSource}.
  */