diff --git a/Basic-tutorial.md b/Basic-tutorial.md index e91be07..95cfcf0 100644 --- a/Basic-tutorial.md +++ b/Basic-tutorial.md @@ -55,8 +55,8 @@ public void onEnable() { The API is a class called HolographicDisplaysAPI, all the methods are static. With the method `createHologram(...)` you can create a hologram with some lines. The method returns the hologram just created. Example: ```java -// Suppose that "where" is a Location object obtained before (e.g. in a command), and "plugin" is your plugin's instance. -Location where = ... +Plugin plugin = ... // Your plugin's instance +Location where = ... // A Location object Hologram hologram = HolographicDisplaysAPI.createHologram(plugin, where, "Test hologram"); ```