Skip to content

Commit

Permalink
change-pakcage-address (#2)
Browse files Browse the repository at this point in the history
Co-authored-by: sepehrsoh <[email protected]>
  • Loading branch information
sepehrsoh and sepehrsoh authored Jan 7, 2025
1 parent 72a1ff7 commit cb832e0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/snapp-incubator/symspell
module github.com/snapp-incubator/go-symspell

go 1.23.4
2 changes: 1 addition & 1 deletion internal/lookup.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package internal

import (
"errors"
verbositypkg "github.com/snapp-incubator/symspell/internal/verbosity"
verbositypkg "github.com/snapp-incubator/go-symspell/internal/verbosity"
"slices"
"sort"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/lookup_compound.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strconv"
"strings"

verbositypkg "github.com/snapp-incubator/symspell/internal/verbosity"
verbositypkg "github.com/snapp-incubator/go-symspell/internal/verbosity"
)

func parseWords(phrase string, preserveCase bool, splitBySpace bool) []string {
Expand Down
2 changes: 1 addition & 1 deletion internal/lookup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package internal
import (
"testing"

verbositypkg "github.com/snapp-incubator/symspell/internal/verbosity"
verbositypkg "github.com/snapp-incubator/go-symspell/internal/verbosity"
)

func TestDeletes(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/symspell.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"unicode/utf8"

"github.com/snapp-incubator/symspell/internal/pkg/edit_distance"
"github.com/snapp-incubator/go-symspell/internal/pkg/edit_distance"
)

// SymSpell represents the Symmetric Delete spelling correction algorithm.
Expand Down
4 changes: 2 additions & 2 deletions symspell.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package symspell
import (
"log"

"github.com/snapp-incubator/symspell/internal"
"github.com/snapp-incubator/symspell/internal/verbosity"
"github.com/snapp-incubator/go-symspell/internal"
"github.com/snapp-incubator/go-symspell/internal/verbosity"
)

func NewSymSpell(opt ...internal.Options) *internal.SymSpell {
Expand Down
4 changes: 2 additions & 2 deletions symspell_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/snapp-incubator/symspell/internal/verbosity"
"github.com/snapp-incubator/go-symspell/internal/verbosity"
)

func TestSymspellLookup(t *testing.T) {
Expand Down Expand Up @@ -98,7 +98,7 @@ func TestLookupCompound(t *testing.T) {
a: "Can yu readthis",
maxEditDistance: 2,
},
want: "wan you read this",
want: "can you read this",
},
{
name: "Test 3",
Expand Down

0 comments on commit cb832e0

Please sign in to comment.