summaryrefslogtreecommitdiff
path: root/Examples/octave
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2017-07-28 09:37:41 +1200
committerOlly Betts <olly@survex.com>2017-07-28 09:37:41 +1200
commit46f7217c507f5599777041e346b23a3c3475d015 (patch)
treea9d617dd52357da991c7384684de29703bfabea1 /Examples/octave
parent7ac21f3799ce5bd8eec629132c2ddaa170db948f (diff)
downloadswig-46f7217c507f5599777041e346b23a3c3475d015.tar.gz
Remove random statement glued onto comment line
And also copy-and-paste duplicate.
Diffstat (limited to 'Examples/octave')
-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());