Skip to content

Commit bbc42f1

Browse files
committed
Apply go fmt
1 parent eb1e2b7 commit bbc42f1

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

detector.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type Result struct {
1313

1414
type Detector struct {
1515
recognizers []recognizer
16-
stripTag bool
16+
stripTag bool
1717
}
1818

1919
// List of charset recognizers

recognizer.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ type recognizer interface {
77
type recognizerOutput Result
88

99
type recognizerInput struct {
10-
raw []byte
11-
input []byte
12-
tagStripped bool
13-
byteStats []int
14-
hasC1Bytes bool
10+
raw []byte
11+
input []byte
12+
tagStripped bool
13+
byteStats []int
14+
hasC1Bytes bool
1515
}
1616

1717
func newRecognizerInput(raw []byte, stripTag bool) *recognizerInput {
1818
input, stripped := mayStripInput(raw, stripTag)
1919
byteStats := computeByteStats(input)
2020
return &recognizerInput{
21-
raw: raw,
22-
input: input,
23-
tagStripped: stripped,
24-
byteStats: byteStats,
25-
hasC1Bytes: computeHasC1Bytes(byteStats),
21+
raw: raw,
22+
input: input,
23+
tagStripped: stripped,
24+
byteStats: byteStats,
25+
hasC1Bytes: computeHasC1Bytes(byteStats),
2626
}
2727
}
2828

0 commit comments

Comments
 (0)