Skip to content

Commit

Permalink
fix: import path
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust committed Aug 26, 2019
1 parent d77ca3f commit efb6ca8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dot/dot.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// import (
// "fmt"
// "runtime"
// . "github.com/MakeNowJust/heredoc/dot"
// . "github.com/MakeNowJust/heredoc/v2/dot"
// )
//
// func main() {
Expand All @@ -27,7 +27,7 @@
// }
package heredoc_dot

import "github.com/MakeNowJust/heredoc"
import "github.com/MakeNowJust/heredoc/v2"

// Shortcut heredoc.Doc.
func D(raw string) string {
Expand Down
3 changes: 1 addition & 2 deletions example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ package heredoc_test

import (
"fmt"
"github.com/MakeNowJust/heredoc/v2"
)

import "github.com/MakeNowJust/heredoc"

func ExampleDoc_lipsum() {
fmt.Print(heredoc.Doc(`
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
Expand Down

0 comments on commit efb6ca8

Please sign in to comment.