aboutsummaryrefslogtreecommitdiff
path: root/Examples/go/template/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/go/template/index.html')
-rw-r--r--Examples/go/template/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/go/template/index.html b/Examples/go/template/index.html
index cf2b1337b..a389c196a 100644
--- a/Examples/go/template/index.html
+++ b/Examples/go/template/index.html
@@ -42,7 +42,7 @@ template<class T> class vector {
v[index] = val;
}
#ifdef SWIG
- %addmethods {
+ %extend {
T getitem(int index) {
return self-&gt;get(index);
}
@@ -54,7 +54,7 @@ template<class T> class vector {
};
</pre>
</blockquote>
-The %addmethods is used for a neater interface from Go as the
+The %extend is used for a neater interface from Go as the
functions <tt>get</tt> and <tt>set</tt> use C++ references to
primitive types. These are tricky to use from Go as they end up as
pointers, which only work when the C++ and Go types correspond