Skip to content

Commit

Permalink
Missed one last unneeded col package prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
cquinn committed May 12, 2017
1 parent 53d741f commit d7a5ec3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/cli/command.pony
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
use col = "collections"
use "collections"

class box Command
"""
Command contains all of the information describing a command with its spec
and effective options and arguments, ready to use.
"""
let spec: CommandSpec box
let options: col.Map[String, Option]
let args: col.Map[String, Arg]
let options: Map[String, Option]
let args: Map[String, Arg]

new create(
spec': CommandSpec box,
options': col.Map[String, Option],
args': col.Map[String, Arg])
options': Map[String, Option],
args': Map[String, Arg])
=>
spec = spec'
options = options'
Expand Down

0 comments on commit d7a5ec3

Please sign in to comment.