Fix Go example in Go.html

Missing "func" keyword.
This commit is contained in:
Sameer Ajmani 2015-10-09 17:01:37 -04:00
commit fee8f022e2

View file

@ -445,7 +445,7 @@ type MyClass interface {
MyMethod() int
}
MyClassMyFactoryFunction() MyClass {
func MyClassMyFactoryFunction() MyClass {
// swig magic here
}
</pre>