Index: library/nx/nx.tcl =================================================================== diff -u -r892aa579d3cc7195ce90e93d4bf8b70c2909e451 -rcd96543a3a6fb25ec8e52548892d12d244208a1a --- library/nx/nx.tcl (.../nx.tcl) (revision 892aa579d3cc7195ce90e93d4bf8b70c2909e451) +++ library/nx/nx.tcl (.../nx.tcl) (revision cd96543a3a6fb25ec8e52548892d12d244208a1a) @@ -30,7 +30,7 @@ # # get frequenly used primitiva from the next scripting framework # - namespace eval ::nsf {}; # makein pkg indexer happy + namespace eval ::nsf {}; # make pkg indexer happy namespace import ::nsf::next ::nsf::current ::nsf::self # @@ -145,7 +145,7 @@ # define method "method" for Class and Object ::nsf::method Class method { - name arguments -returns body -precondition -postcondition + name arguments:parameter,multivalued -returns body -precondition -postcondition } { set conditions [list] if {[info exists precondition]} {lappend conditions -precondition $precondition} @@ -162,7 +162,7 @@ } ::nsf::method Object method { - name arguments -returns body -precondition -postcondition + name arguments:parameter,multivalued -returns body -precondition -postcondition } { set conditions [list] if {[info exists precondition]} {lappend conditions -precondition $precondition}