Skip to content

Commit b641d56

Browse files
committed
move unicodedata to internal/unicodedata
1 parent 45023d1 commit b641d56

22 files changed

+7
-7
lines changed

harfbuzz/ot_shape_hangul.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package harfbuzz
33
import (
44
ot "github.com/go-text/typesetting/font/opentype"
55
"github.com/go-text/typesetting/font/opentype/tables"
6-
ucd "github.com/go-text/typesetting/unicodedata"
6+
ucd "github.com/go-text/typesetting/internal/unicodedata"
77
)
88

99
// ported from harfbuzz/src/hb-ot-shape-complex-hangul.cc Copyright © 2013 Google, Inc. Behdad Esfahbod

harfbuzz/unicode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package harfbuzz
33
import (
44
"unicode"
55

6-
ucd "github.com/go-text/typesetting/unicodedata"
6+
ucd "github.com/go-text/typesetting/internal/unicodedata"
77
)
88

99
// uni exposes some lookup functions for Unicode properties.

harfbuzz/unicode_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package harfbuzz
33
import (
44
"testing"
55

6+
ucd "github.com/go-text/typesetting/internal/unicodedata"
67
"github.com/go-text/typesetting/language"
7-
ucd "github.com/go-text/typesetting/unicodedata"
88
)
99

1010
// ported from harfbuzz/test/api/test-unicode.c Copyright © 2011 Codethink Limited, Google, Inc. Ryan Lortie, Behdad Esfahbod

0 commit comments

Comments
 (0)