diff --git a/src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java b/src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java index 75201b7..848b836 100644 --- a/src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java +++ b/src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java @@ -115,7 +115,7 @@ public interface BlueMapMap { boolean isFrozen(); /** - * Returns the currently set TileFilter. The default TileFilter is equivalent to t -> true. + * Returns the currently set TileFilter. The default TileFilter is equivalent to t -> true. */ Predicate getTileFilter(); diff --git a/src/main/java/de/bluecolored/bluemap/api/ContentTypeRegistry.java b/src/main/java/de/bluecolored/bluemap/api/ContentTypeRegistry.java index 712ece9..bda3bf8 100644 --- a/src/main/java/de/bluecolored/bluemap/api/ContentTypeRegistry.java +++ b/src/main/java/de/bluecolored/bluemap/api/ContentTypeRegistry.java @@ -110,7 +110,7 @@ public class ContentTypeRegistry { } /** - * Registers a new file-suffix => content-type mapping to this registry. + * Registers a new file-suffix => content-type mapping to this registry. * @param fileSuffix The type-suffix of a file-name * @param contentType The content-type string */ diff --git a/src/main/java/de/bluecolored/bluemap/api/WebApp.java b/src/main/java/de/bluecolored/bluemap/api/WebApp.java index 7088b6c..32d0836 100644 --- a/src/main/java/de/bluecolored/bluemap/api/WebApp.java +++ b/src/main/java/de/bluecolored/bluemap/api/WebApp.java @@ -65,7 +65,7 @@ public interface WebApp { *
* Example: *
-     * BlueMapAPI.onEnable(api -> {
+     * BlueMapAPI.onEnable(api -> {
      *    api.getWebApp().registerStyle("js/my-custom-style.css");
      * });
      * 
@@ -83,7 +83,7 @@ public interface WebApp { *
* Example: *
-     * BlueMapAPI.onEnable(api -> {
+     * BlueMapAPI.onEnable(api -> {
      *    api.getWebApp().registerScript("js/my-custom-script.js");
      * });
      *