🐛 Fix broken change detection
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / output / Output.java
index 853c9ce..3e9d904 100644 (file)
 
 package net.pterodactylus.rhynodge.output;
 
-import net.pterodactylus.rhynodge.Trigger;
+import net.pterodactylus.rhynodge.State;
 
 /**
- * Defines the output of a {@link Trigger}. As different output has to be
+ * Defines the output of a {@link State}. As different output has to be
  * generated for different media, the {@link #text(String)} method takes as
  * an argument the MIME type of the desired output.
  *
@@ -44,7 +44,7 @@ public interface Output {
         *
         * @param mimeType
         *            The MIME type of the text (“text/plain” and â€œtext/html” should
-        *            be supported by all {@link Trigger}s)
+        *            be supported by all {@link State}s)
         * @return The text for the given MIME type, or {@code null} if there is no
         *         text defined for the given MIME type
         */