summaryrefslogtreecommitdiffstats
path: root/tpl/strings
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:42:45 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:42:45 +0200
commitd8717cd4c74e80ea8e20adead9321412a2d76022 (patch)
tree50b934ea1c1b67ac0911785c273027eca3e4894c /tpl/strings
parent2d08a296a2de3b3db209a0f44249b7b24733098e (diff)
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'tpl/strings')
-rw-r--r--tpl/strings/init.go4
-rw-r--r--tpl/strings/init_test.go4
-rw-r--r--tpl/strings/strings.go4
-rw-r--r--tpl/strings/strings_test.go2
4 files changed, 7 insertions, 7 deletions
diff --git a/tpl/strings/init.go b/tpl/strings/init.go
index e40fe9d39..45d694b97 100644
--- a/tpl/strings/init.go
+++ b/tpl/strings/init.go
@@ -14,8 +14,8 @@
package strings
import (
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/tpl/internal"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/tpl/internal"
)
const name = "strings"
diff --git a/tpl/strings/init_test.go b/tpl/strings/init_test.go
index 22f4ba21f..a8ad8ffdf 100644
--- a/tpl/strings/init_test.go
+++ b/tpl/strings/init_test.go
@@ -16,8 +16,8 @@ package strings
import (
"testing"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/tpl/internal"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/tpl/internal"
"github.com/stretchr/testify/require"
)
diff --git a/tpl/strings/strings.go b/tpl/strings/strings.go
index bba25677c..36af1a1c5 100644
--- a/tpl/strings/strings.go
+++ b/tpl/strings/strings.go
@@ -21,8 +21,8 @@ import (
"unicode/utf8"
"github.com/spf13/cast"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/helpers"
)
// New returns a new instance of the strings-namespaced template functions.
diff --git a/tpl/strings/strings_test.go b/tpl/strings/strings_test.go
index 0c8919be6..ee10ac759 100644
--- a/tpl/strings/strings_test.go
+++ b/tpl/strings/strings_test.go
@@ -18,7 +18,7 @@ import (
"html/template"
"testing"
- "github.com/spf13/hugo/deps"
+ "github.com/gohugoio/hugo/deps"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)