Skip to content

Commit

Permalink
Fix doc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Aug 9, 2013
1 parent 432f354 commit 9af4f47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/net/aufdemrand/denizen/tags/core/UtilTags.java
Expand Up @@ -152,8 +152,8 @@ public void serverTags(ReplaceableTagEvent event) {
}

// <--
// <server.current_time_millis> -> dList(dNPC)
// returns a dList of dNPCs currently in the Citizens NPC Registry.
// <server.list_npcs> -> dList(dNPC)
// Returns a dList of dNPCs currently in the Citizens NPC Registry.
// -->
if (attribute.startsWith("list_npcs")) {
ArrayList<dNPC> npcs = new ArrayList<dNPC>();
Expand All @@ -164,8 +164,8 @@ public void serverTags(ReplaceableTagEvent event) {
}

// <--
// <server.current_time_millis> -> dList(dNPC)
// returns a dList of dNPCs currently in the Citizens NPC Registry.
// <server.list_worlds> -> dList(dWorld)
// Returns a dList of all worlds.
// -->
if (attribute.startsWith("list_worlds")) {
ArrayList<dWorld> worlds = new ArrayList<dWorld>();
Expand Down

0 comments on commit 9af4f47

Please sign in to comment.