Index: doc/next-tutorial/next-tutorial.txt =================================================================== diff -u -r84277b252f25481e4c5966f35729869a1d337a83 -r43373d98ca07d446abec8f8f62af7c4df56207a3 --- doc/next-tutorial/next-tutorial.txt (.../next-tutorial.txt) (revision 84277b252f25481e4c5966f35729869a1d337a83) +++ doc/next-tutorial/next-tutorial.txt (.../next-tutorial.txt) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3) @@ -1131,7 +1131,7 @@ call-protection is already protected. The method call-protection of +private+ goes one step further and -helps to hide implementation details also for implementors of +helps to hide implementation details also for implementers of subclasses. Private methods are a means for avoiding unanticipated name clashes. Consider the following example: Index: doc/tutorial2.html =================================================================== diff -u -rf817725e88751339be58485d579241a0b97e15b9 -r43373d98ca07d446abec8f8f62af7c4df56207a3 --- doc/tutorial2.html (.../tutorial2.html) (revision f817725e88751339be58485d579241a0b97e15b9) +++ doc/tutorial2.html (.../tutorial2.html) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3) @@ -868,7 +868,7 @@ When we create an application class such as the class Stack in the examples above, we create it as instance of the basic meta-class ::xotcl2::Class. The application class will have -::xotcl2::Object as it superclass, unless we spefify this +::xotcl2::Object as it superclass, unless we specify this differently. When we create an instance of the class Stack (such as e.g. the stack s1) we create it by using the method create provided by ::xotcl2::Class (an instance can @@ -4217,7 +4217,7 @@ where valid options are -objscope, -methodprefix, -earlybinding and -default. The option -objscope is used to specify that the command should be -executed in the scope of the calling object (i.e. instance variables apprear +executed in the scope of the calling object (i.e., instance variables appear as local variables), -methodprefix means that the called method should be prefixed with the specified string (to avoid name clashes), -earlybinding means that the function pointer of Index: dtrace/README =================================================================== diff -u -r5c2e3f4809a27afd59d3ad7d4a806cb8aa7d7a93 -r43373d98ca07d446abec8f8f62af7c4df56207a3 --- dtrace/README (.../README) (revision 5c2e3f4809a27afd59d3ad7d4a806cb8aa7d7a93) +++ dtrace/README (.../README) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3) @@ -29,7 +29,7 @@ step.) DTrace requires normally that the dtrace command is run with root -permissions. In case the provided sample scrips in the dtrace +permissions. In case the provided sample scripts in the dtrace directory don't work out of the box, the following hints might help: * Make sure that a "package require nx" works for root as well Index: generic/nsf.c =================================================================== diff -u -ref60fd6efc8dc75cd58cffa54dacb5b62a22691d -r43373d98ca07d446abec8f8f62af7c4df56207a3 --- generic/nsf.c (.../nsf.c) (revision ef60fd6efc8dc75cd58cffa54dacb5b62a22691d) +++ generic/nsf.c (.../nsf.c) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3) @@ -18299,7 +18299,7 @@ /* * Check for application specific value checkers and converters */ - /*fprintf(stderr, "parm %s: slotObj %p viaCmd? %d\n", + /*fprintf(stderr, "parameter %s: slotObj %p viaCmd? %d\n", paramPtr->name, paramPtr->slotObj, paramPtr->converter == ConvertViaCmd);*/ if ((paramPtr->slotObj || paramPtr->converter == ConvertViaCmd) && paramPtr->type) { @@ -25418,7 +25418,7 @@ * Not all parameter processed, make sure varags is set. */ - /*fprintf(stderr, ".... not all parms processed, pPtr '%s' j %ld nrParams %d last '%s' varArgs %d dashdash %d\n", + /*fprintf(stderr, ".... not all parameters processed, pPtr '%s' j %ld nrParams %d last '%s' varArgs %d dashdash %d\n", currentParamPtr->name, currentParamPtr - paramPtr, nrParams, lastParamPtr->name, pcPtr->varArgs, (int)dashdash);*/ @@ -25793,7 +25793,7 @@ /* * In case, we failed so far to obtain a result, try to use the - * object-system implementors definitions in the global array + * object-system implementers definitions in the global array * ::nsf::parametersyntax. Note that we can only obtain the * parameter syntax this way. */ Index: library/mongodb/nx-mongo.tcl =================================================================== diff -u -rd25e6ec76196ecb6bf5cdba9fec72bced9062537 -r43373d98ca07d446abec8f8f62af7c4df56207a3 --- library/mongodb/nx-mongo.tcl (.../nx-mongo.tcl) (revision d25e6ec76196ecb6bf5cdba9fec72bced9062537) +++ library/mongodb/nx-mongo.tcl (.../nx-mongo.tcl) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3) @@ -434,7 +434,7 @@ # For interaction with bson structures, we provide on the class # level "bson cond" (a small dsl for a more convenient syntax in # bson queries), "bson opts" (options like e.g. ordering), "bson - # atts (a simplifed property selection) and "bson parameter" which + # atts (a simplified property selection) and "bson parameter" which # translates from a bson structure (tuple) into a dashed parameter # list used in object creation. # Index: library/serialize/serializer.tcl =================================================================== diff -u -rda2688b92e232f4263857d29f6bcca80f642d51a -r43373d98ca07d446abec8f8f62af7c4df56207a3 --- library/serialize/serializer.tcl (.../serializer.tcl) (revision da2688b92e232f4263857d29f6bcca80f642d51a) +++ library/serialize/serializer.tcl (.../serializer.tcl) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3) @@ -40,7 +40,7 @@ Do not serialize any instance variable named b (of any object).
<@pre class='code'>Serializer all -ignoreVarsRE {^::o1::.*text.*$|^::o2::x$}@pre> Do not serialize any variable of c1 whose name contains - the string "text" and do not serialze the variable x of o2.
+ the string "text" and do not serialize the variable x of o2.
<@pre class='code'>Serializer all -ignore obj1 obj2 ... @pre> do not serizalze the specified objects } @@ -90,7 +90,7 @@ } { Description { Serialize the specified method. In order to serialize - an instproc, <@tt>prefix@tt> should be 'inst'; to serialze + an instproc, <@tt>prefix@tt> should be 'inst'; to serialize procs, it should be empty.
Examples:
Index: library/xotcl/doc/langRef.xotcl
===================================================================
diff -u -rc54164417a4281dfb06cab44dccef2aa91b9d5ee -r43373d98ca07d446abec8f8f62af7c4df56207a3
--- library/xotcl/doc/langRef.xotcl (.../langRef.xotcl) (revision c54164417a4281dfb06cab44dccef2aa91b9d5ee)
+++ library/xotcl/doc/langRef.xotcl (.../langRef.xotcl) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3)
@@ -290,7 +290,7 @@
dash-notation at arbitrary times:
<@pre class='code'> o configure -set x 4@pre>
- Note that if '-' is followed by a numerical, the arument is
+ Note that if '-' is followed by a numerical, the argument is
interpreted as a negative number (and not as a method). If a
value of a method called this way starts with a "-", the call can
be placed safely into a list (e.g. "Class c [list -strangearg -a-]
Index: library/xotcl/doc/tutorial.html
===================================================================
diff -u -rf817725e88751339be58485d579241a0b97e15b9 -r43373d98ca07d446abec8f8f62af7c4df56207a3
--- library/xotcl/doc/tutorial.html (.../tutorial.html) (revision f817725e88751339be58485d579241a0b97e15b9)
+++ library/xotcl/doc/tutorial.html (.../tutorial.html) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3)
@@ -4116,7 +4116,7 @@
where valid options are -objscope, -methodprefix,
-earlybinding and -default. The option
-objscope is used to specify that the command should be
-executed in the scope of the calling object (i.e. instance variables apprear
+executed in the scope of the calling object (i.e., instance variables appear
as local variables), -methodprefix means that the called
method should be prefixed with the specified string (to avoid name
clashes), -earlybinding means that the function pointer of
Index: library/xotcl/library/lib/metadataAnalyzer.xotcl
===================================================================
diff -u -r67639f37e908458f0c4016135f8d7771c7dde465 -r43373d98ca07d446abec8f8f62af7c4df56207a3
--- library/xotcl/library/lib/metadataAnalyzer.xotcl (.../metadataAnalyzer.xotcl) (revision 67639f37e908458f0c4016135f8d7771c7dde465)
+++ library/xotcl/library/lib/metadataAnalyzer.xotcl (.../metadataAnalyzer.xotcl) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3)
@@ -8,7 +8,7 @@
@ @File {
description {
XOTcl file analyzer for @ metadata. E.g.\ used for
- doumentation with xoDoc (but in the static variant
+ documentation with xoDoc (but in the static variant
StaticMetadataAnalyzer which uses the dynamic
variant in this file).
<@p>
Index: library/xotcl/library/lib/staticMetadata.xotcl
===================================================================
diff -u -r073177c8b1304443107efeeb0c334e9477346778 -r43373d98ca07d446abec8f8f62af7c4df56207a3
--- library/xotcl/library/lib/staticMetadata.xotcl (.../staticMetadata.xotcl) (revision 073177c8b1304443107efeeb0c334e9477346778)
+++ library/xotcl/library/lib/staticMetadata.xotcl (.../staticMetadata.xotcl) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3)
@@ -9,7 +9,7 @@
@ @File {
description {
XOTcl file static analyzer for @ metadata. E.g. used for
- doumentation with xoDoc. I.e. allows for reading in a
+ documentation with xoDoc. I.e. allows for reading in a
file and evaluating the metadata-related info only.
}
}
Index: library/xotcl/library/lib/xodoc.xotcl
===================================================================
diff -u -rdc6b2eb2f4a57981055d664c6b14ff1b7dc3fe5c -r43373d98ca07d446abec8f8f62af7c4df56207a3
--- library/xotcl/library/lib/xodoc.xotcl (.../xodoc.xotcl) (revision dc6b2eb2f4a57981055d664c6b14ff1b7dc3fe5c)
+++ library/xotcl/library/lib/xodoc.xotcl (.../xodoc.xotcl) (revision 43373d98ca07d446abec8f8f62af7c4df56207a3)
@@ -393,7 +393,7 @@
@ XODoc instproc writeFile {
filename "filename destination" name "name of the HTML document"
} {
- description "Create HTML docuemntation from metadata token and write to file