Index: library/mongodb/nx-mongo.tcl =================================================================== diff -u -N -r39197485bb3bf3b52b16bccda51800cd801b8f4b -rd25e6ec76196ecb6bf5cdba9fec72bced9062537 --- library/mongodb/nx-mongo.tcl (.../nx-mongo.tcl) (revision 39197485bb3bf3b52b16bccda51800cd801b8f4b) +++ library/mongodb/nx-mongo.tcl (.../nx-mongo.tcl) (revision d25e6ec76196ecb6bf5cdba9fec72bced9062537) @@ -241,7 +241,7 @@ foreach {pos type v} $value {lappend result [:bson decode $type $v]} return $result } elseif {$bsontype eq "document"} { - #puts stderr "*** we have an document '$value', [:serialize]" + #puts stderr "*** we have a document '$value', [:serialize]" if {${:type} eq "embedded" && [info exists :arg]} { #puts stderr "*** we have an embedded class = ${:arg}" set value [${:arg} bson create $value] @@ -813,14 +813,14 @@ } # - # Allow special representations in MongoDB for instance variables. + # Provide special representations in MongoDB for instance variables. # The methods # # bson rep encode .... # bson rep decode .... # - # allow for creating tailored methods to obtain + encode instance - # variables and for decode an setting these. The codecs + # can be used for creating tailored methods to obtain and encode + # instance variables and for decoding and setting these. The codecs # (coder/decoder) are extensible on the application level by # defining ensemble methods with the name of the codec as last part.