From fee8f022e2f830166937bf4a2d112ef12d69a7eb Mon Sep 17 00:00:00 2001 From: Sameer Ajmani Date: Fri, 9 Oct 2015 17:01:37 -0400 Subject: [PATCH] Fix Go example in Go.html Missing "func" keyword. --- Doc/Manual/Go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }