File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ $ dep ensure -vendor-only
2929
3030## Example
3131
32- ` coderunner.CheckImports ` (success):
32+ ` coderunner.CheckImports() ` (success):
3333
3434``` go
3535package main
@@ -78,7 +78,7 @@ func main() {
7878}
7979```
8080
81- ` coderunner.CheckImports ` (error):
81+ ` coderunner.CheckImports() ` (error):
8282
8383``` go
8484package main
@@ -127,7 +127,7 @@ func main() {
127127}
128128```
129129
130- ` systemutils.RunCommand ` :
130+ ` coderunner.CompileCode() ` :
131131
132132``` go
133133package main
@@ -180,7 +180,7 @@ func main() {
180180}
181181```
182182
183- ` testrunner.RunTestCases ` (success):
183+ ` testrunner.RunTestCases() ` (success):
184184
185185``` go
186186package main
@@ -238,7 +238,7 @@ func main() {
238238}
239239```
240240
241- ` testrunner.RunTestCases ` (error):
241+ ` testrunner.RunTestCases() ` (error):
242242
243243``` go
244244package main
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ func ExampleCheckImports_error() {
7676 // disallowed import "fmt"
7777}
7878
79- func ExampleRunCommand () {
79+ func ExampleCompileCode () {
8080 const code = `
8181 package main
8282
You can’t perform that action at this time.
0 commit comments