Fixed DocumentationPrinter not print "/" for the wiki table.

This commit is contained in:
sk89q 2011-01-29 12:53:49 -08:00
parent 6434c04ce4
commit b0069f2548

View File

@ -92,7 +92,7 @@ public class DocumentationPrinter {
Command cmd = method.getAnnotation(Command.class);
stream.println("|-");
stream.print("| " + cmd.aliases()[0]);
stream.print("| /" + cmd.aliases()[0]);
stream.print(" || ");
if (method.isAnnotationPresent(CommandPermissions.class)) {