Index: doc/next-migration.html =================================================================== diff -u -rbf27d4db31b371bc100e7199f06bb5c63e36a7eb -rbf1541d5a304b10847f0f163b43ed3d440beb8ad --- doc/next-migration.html (.../next-migration.html) (revision bf27d4db31b371bc100e7199f06bb5c63e36a7eb) +++ doc/next-migration.html (.../next-migration.html) (revision bf1541d5a304b10847f0f163b43ed3d440beb8ad) @@ -490,22 +490,22 @@ Class C
C instproc foo args {
-   # method scoped variable a
+   # Method scoped variable a
  set a 1
-   # instance variable b
+   # Instance variable b
  my instvar b
  set b 2
-   # global variable/namespaced variable c
+   # Global variable/namespaced variable c
  set ::c 3
}
Class create C {
  :method foo args {...}
-     # method scoped variable a
+     # Method scoped variable a
    set a 1
-     # instance variable b
+     # Instance variable b
    set :b 2
-     # global variable/namespaced variable c
+     # Global variable/namespaced variable c
    set ::c 3
  }
}
@@ -518,7 +518,7 @@ }
- # set own instance variable to a value via + # Set own instance variable to a value via resolver
# (prefered and fastest way)


... method ... {
@@ -535,7 +535,7 @@ }
- # set own instance variable via variable import

+ # Set own instance variable via variable import

... method ... {
   ::nx::var import [self] varname
@@ -552,7 +552,7 @@ }
- # read own instance variable

+ # Read own instance variable

... method ... {
   set newVar [set :otherVar]
@@ -950,7 +950,7 @@ n.a. - # list only application specific methods
+ # List only application specific methods
obj info callable -application @@ -1237,12 +1237,12 @@ self next - # returns now method-handle
+ # Returns now method-handle
current next self filterreg - # returns now method-handle
+ # Returns now method-handle
current filterreg @@ -1347,6 +1347,6 @@
- Last modified: Mon Aug 16 10:00:14 CEST 2010 + Last modified: Mon Aug 16 10:04:44 CEST 2010