Skip to content

Commit fa2ae33

Browse files
author
Randall C. O'Reilly
committed
more gofmt fixes.. I guess v19 gofmt is now formatting comments -- goimports is not doing this? probably I need to update.
1 parent d237900 commit fa2ae33

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

doc.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
gopy generates (and compiles) language bindings that make it possible to call Go code
77
and pass objects from Python.
88
9-
Using gopy
9+
# Using gopy
1010
1111
gopy takes a Go package and generates bindings for all of the exported
1212
symbols. The exported symbols define the cross-language interface.
@@ -20,7 +20,6 @@ Go. Start with a Go package:
2020
2121
func Hello(name string) {
2222
fmt.Println("Hello, %s!\n", name)
23-
}
24-
23+
}
2524
*/
2625
package main

gopyh/handle.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func DecRef(handle CGoHandle) {
159159
}
160160
}
161161

162-
// IncRef increments the reference count for the specified handle.
162+
// IncRef increments the reference count for the specified handle.
163163
func IncRef(handle CGoHandle) {
164164
if handle < 1 {
165165
return

0 commit comments

Comments
 (0)