aboutsummaryrefslogtreecommitdiff
path: root/Examples/octave/extend/runme.m
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/octave/extend/runme.m')
-rw-r--r--Examples/octave/extend/runme.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/octave/extend/runme.m b/Examples/octave/extend/runme.m
index bc73184a8..c88a7c151 100644
--- a/Examples/octave/extend/runme.m
+++ b/Examples/octave/extend/runme.m
@@ -14,7 +14,7 @@ CEO=@(name) subclass(swigexample.Manager(name),'getPosition',@(self) "CEO");
# Create an instance of our employee extension class, CEO. The calls to
# getName() and getPosition() are standard, the call to getTitle() uses
-# the director wrappers to call CEO.getPosition. e = CEO("Alice")
+# the director wrappers to call CEO.getPosition.
e = CEO("Alice");
printf("%s is a %s\n",e.getName(),e.getPosition());