You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: metafacture-formatting/src/main/java/org/metafacture/formatting/ObjectTemplate.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -31,18 +31,18 @@
31
31
importjava.util.regex.Pattern;
32
32
33
33
/**
34
-
* Builds a {@link String} from a template and an {@link Object}. ${o} marks
35
-
* the place where the object is to be inserted. If the received object in an
36
-
* instance of Triple${s}, ${p} and ${o} are used instead.
34
+
* Builds a {@link String} from a template and an {@link Object}. `${o}` marks
35
+
* the place where the object is to be inserted. If the received object is an
36
+
* instance of Triple`${s}`, `${p}` and `${o}` are used instead.
37
37
*
38
38
* @param <T>
39
39
* object type
40
40
*
41
41
* @author Markus Geipel
42
42
*
43
43
*/
44
-
@Description("Builds a String from a template and an Object. Provide template in brackets. ${o} marks the place where the object is to be inserted. " +
45
-
"If the object is an instance of Triple ${s}, ${p} and ${o} are used instead.")
44
+
@Description("Builds a String from a template and an Object. Provide template in brackets. `${o}` marks the place where the object is to be inserted. " +
45
+
"If the object is an instance of Triple `${s}`, `${p}` and `${o}` are used instead.")
0 commit comments