Skip to content

Commit 73f43b6

Browse files
committed
Fix misuse of single quotes.
1 parent 8ce7cba commit 73f43b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

go/replace-the-current-process-with-an-external-command.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ executed, and relevant environment. Here is a simple example.
99
```go
1010
package main
1111

12-
import 'fmt'
13-
import 'os'
14-
import 'syscall'
12+
import "fmt"
13+
import "os"
14+
import "syscall"
1515

1616
func main() {
1717
// get the system's environment variables

0 commit comments

Comments
 (0)