1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00

style: fix comment typo

This commit is contained in:
hacksalot 2018-02-13 20:39:12 -05:00
parent b077ff42e4
commit 73c5674af8
No known key found for this signature in database
GPG Key ID: 2F343EC247CA4B06

View File

@ -189,7 +189,7 @@ initialize = ( ar, exitCallback ) ->
_err.err fluenterror: HMSTATUS.invalidCommand, quit: true, attempted: o.orgVerb, true _err.err fluenterror: HMSTATUS.invalidCommand, quit: true, attempted: o.orgVerb, true
# Override the .missingArgument behavior # Override the .missingArgument behavior
Command.prototype.missingArgument = (### unused ###) -> Command.prototype.missingArgument = () ->
if this.name() != 'help' if this.name() != 'help'
_err.err _err.err
verb: @name() verb: @name()
@ -294,7 +294,7 @@ execute = ( src, dst, opts, log ) ->
### Success handler for verb invocations. Calls process.exit by default ### ### Success handler for verb invocations. Calls process.exit by default ###
executeSuccess = (###obj###) -> executeSuccess = () ->
# Can't call _exitCallback here (process.exit) when PDF is running in BK # Can't call _exitCallback here (process.exit) when PDF is running in BK
#_exitCallback 0; return #_exitCallback 0; return