1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 05:57:58 +01:00

add missing semicolons

This commit is contained in:
Doug Kearns
2008-06-03 15:16:12 +00:00
parent 9ad5135b4e
commit ff132570d3
4 changed files with 13 additions and 13 deletions

View File

@@ -138,9 +138,9 @@ liberator.util = { //{{{
{
var start = "", end = "";
if (command instanceof liberator.Command)
start = ":"
start = ":";
else if (command instanceof liberator.Option)
start = end = "'"
start = end = "'";
var ret = "";
var longHelp = false;
@@ -154,7 +154,7 @@ liberator.util = { //{{{
if (longHelp)
ret += "+";
ret += "\n"
ret += "\n";
// the usage information for the command
var usage = command.names[0];
@@ -167,7 +167,7 @@ liberator.util = { //{{{
if (usage.length > 15)
ret += " +";
ret += "\n________________________________________________________________________________\n"
ret += "\n________________________________________________________________________________\n";
// the actual help text
if (command.description)