Skip to content

Commit 87f4dee

Browse files
committed
Remove <code> tags from docs
1 parent 9b57c41 commit 87f4dee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/ch/njol/skript/classes/data/JavaClasses.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public JavaClasses() {}
6060
.name("Number")
6161
.description("A number, e.g. 2.5, 3, or -9812454.",
6262
"Please note that many expressions only need integers, i.e. will discard any frational parts of any numbers without producing an error.")
63-
.usage("<code>[-]###[.###]</code> (any amount of digits; very large numbers will be truncated though)")
63+
.usage("[-]###[.###]</code> (any amount of digits; very large numbers will be truncated though)")
6464
.examples("set the player's health to 5.5",
6565
"set {_temp} to 2*{_temp} - 2.5")
6666
.since("1.0")
@@ -578,10 +578,10 @@ public boolean mustSyncDeserialization() {
578578
"(e.g. %player% will be replaced with the player's name).",
579579
"Because scripts are also text, you have to put text into double quotes to tell Skript which part of the line is an effect/expression and which part is the text.",
580580
"Please read the article on <a href='../strings/'>Texts and Variable Names</a> to learn more.")
581-
.usage("simple: <code>\"...\"</code>",
582-
"quotes: <code>\"...\"\"...\"</code>",
583-
"expressions: <code>\"...%expression%...\"</code>",
584-
"percent signs: <code>\"...%%...\"</code>")
581+
.usage("simple: \"...\"",
582+
"quotes: \"...\"\"...\"",
583+
"expressions: \"...%expression%...\"",
584+
"percent signs: \"...%%...\"")
585585
.examples("broadcast \"Hello World!\"",
586586
"message \"Hello %player%\"",
587587
"message \"The id of \"\"%type of tool%\"\" is %id of tool%.\"")

0 commit comments

Comments
 (0)