We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8977d commit 65379b6Copy full SHA for 65379b6
examples_test.go
@@ -19,7 +19,7 @@ func ExampleNewInput_stdin() {
19
20
// Create file input from absolute path.
21
func ExampleNewInput_fileAbsolute() {
22
- r, err = hookah.NewInput("file:///relative/path")
+ r, err = hookah.NewInput("file:///absolute/path")
23
}
24
25
// Create file input from relative path.
@@ -93,7 +93,7 @@ func ExampleNewOutput_stderr() {
93
94
// Create file output from absolute path (opens in append mode).
95
func ExampleNewOutput_fileAbsolute() {
96
- w, err = hookah.NewOutput("file:///relative/path")
+ w, err = hookah.NewOutput("file:///absolute/path")
97
98
99
// Create file output from relative path (opens in append mode).
0 commit comments