aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/client')
-rw-r--r--src/main/java/gregtech/client/GT_TooltipEventHandler.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/client/GT_TooltipEventHandler.java b/src/main/java/gregtech/client/GT_TooltipEventHandler.java
index 30ef1a396d..eccdd7cbc8 100644
--- a/src/main/java/gregtech/client/GT_TooltipEventHandler.java
+++ b/src/main/java/gregtech/client/GT_TooltipEventHandler.java
@@ -22,13 +22,13 @@ public class GT_TooltipEventHandler {
/*
* What you can do:
- * - add simple, unformated text
- * - add formatted text
+ * - Add simple, unformatted text.
+ * - Add formatted text.
* Note: you can chain formatting codes but the color must be used first:
* e.g. BLACK + ITALIC will create black, italic text but ITALIC + BLACK will only create black text.
* - add animated text
* - chain multiple static and/or animated text together using chain()
- * (Although chaining only static text together is pointless, text() is already able to to that)
+ * (Although chaining only static text together is pointless, text() is already able to do that)
* - add multiple lines by using NEW_LINE (either as String or as Supplier<String>)
* Note: formatting only applies for one line
* Note: having a NEW_LINE in animated text results in "skipping" of one formatting since NEW_LINE
@@ -184,4 +184,4 @@ public class GT_TooltipEventHandler {
};
}
-} \ No newline at end of file
+}