diff options
author | Sameer Ajmani <sameer@golang.org> | 2015-10-09 17:01:37 -0400 |
---|---|---|
committer | Sameer Ajmani <sameer@golang.org> | 2015-10-09 17:01:37 -0400 |
commit | fee8f022e2f830166937bf4a2d112ef12d69a7eb (patch) | |
tree | 5834a1eb6e3217775388f3b13bba819983e08393 /Doc/Manual/Go.html | |
parent | 7e40e523c3bce31e2dd1a0234fd36c64585c2d47 (diff) | |
download | swig-fee8f022e2f830166937bf4a2d112ef12d69a7eb.tar.gz |
Fix Go example in Go.html
Missing "func" keyword.
Diffstat (limited to 'Doc/Manual/Go.html')
-rw-r--r-- | Doc/Manual/Go.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Manual/Go.html b/Doc/Manual/Go.html index f5463c8f0..7a411750b 100644 --- a/Doc/Manual/Go.html +++ b/Doc/Manual/Go.html @@ -445,7 +445,7 @@ type MyClass interface { MyMethod() int } -MyClassMyFactoryFunction() MyClass { +func MyClassMyFactoryFunction() MyClass { // swig magic here } </pre> |