diff --git a/doc.go b/doc.go index 54dd844..4116741 100644 --- a/doc.go +++ b/doc.go @@ -6,7 +6,7 @@ gopy generates (and compiles) language bindings that make it possible to call Go code and pass objects from Python. -Using gopy +# Using gopy gopy takes a Go package and generates bindings for all of the exported symbols. The exported symbols define the cross-language interface. @@ -20,7 +20,6 @@ Go. Start with a Go package: func Hello(name string) { fmt.Println("Hello, %s!\n", name) - } - + } */ package main diff --git a/gopyh/handle.go b/gopyh/handle.go index 8e39bbf..469c864 100644 --- a/gopyh/handle.go +++ b/gopyh/handle.go @@ -159,7 +159,7 @@ func DecRef(handle CGoHandle) { } } -// IncRef increments the reference count for the specified handle. +// IncRef increments the reference count for the specified handle. func IncRef(handle CGoHandle) { if handle < 1 { return