Skip to content

Commit efb6ca8

Browse files
committed
fix: import path
1 parent d77ca3f commit efb6ca8

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

dot/dot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// import (
1616
// "fmt"
1717
// "runtime"
18-
// . "github.com/MakeNowJust/heredoc/dot"
18+
// . "github.com/MakeNowJust/heredoc/v2/dot"
1919
// )
2020
//
2121
// func main() {
@@ -27,7 +27,7 @@
2727
// }
2828
package heredoc_dot
2929

30-
import "github.com/MakeNowJust/heredoc"
30+
import "github.com/MakeNowJust/heredoc/v2"
3131

3232
// Shortcut heredoc.Doc.
3333
func D(raw string) string {

example_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ package heredoc_test
66

77
import (
88
"fmt"
9+
"github.com/MakeNowJust/heredoc/v2"
910
)
1011

11-
import "github.com/MakeNowJust/heredoc"
12-
1312
func ExampleDoc_lipsum() {
1413
fmt.Print(heredoc.Doc(`
1514
Lorem ipsum dolor sit amet, consectetur adipisicing elit,

0 commit comments

Comments
 (0)