Skip to content

Commit d3d8842

Browse files
authored
fix: Fixed html encoding in javadoc (#727)
1 parent 082444e commit d3d8842

File tree

1 file changed

+1
-1
lines changed
  • mcp-json/src/main/java/io/modelcontextprotocol/json

1 file changed

+1
-1
lines changed

mcp-json/src/main/java/io/modelcontextprotocol/json/TypeRef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
/**
1111
* Captures generic type information at runtime for parameterized JSON (de)serialization.
12-
* Usage: TypeRef<List<Foo>> ref = new TypeRef<>(){};
12+
* Usage: TypeRef&lt;List&lt;Foo&gt;&gt; ref = new TypeRef&lt;&gt;(){};
1313
*/
1414
public abstract class TypeRef<T> {
1515

0 commit comments

Comments
 (0)