File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
src/Data/Text/Internal/Builder/Int Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
- {-# LANGUAGE OverloadedStrings #-}
2
-
3
1
-- Module: Data.Text.Internal.Builder.Int.Digits
4
2
-- Copyright: (c) 2013 Bryan O'Sullivan
5
3
-- License: BSD-style
16
14
17
15
module Data.Text.Internal.Builder.Int.Digits (digits ) where
18
16
19
- import Data.ByteString.Char8 (ByteString )
17
+ import Data.ByteString.Char8 (ByteString , pack )
20
18
21
19
digits :: ByteString
22
- digits = " 0001020304050607080910111213141516171819\
23
- \2021222324252627282930313233343536373839\
24
- \4041424344454647484950515253545556575859\
25
- \6061626364656667686970717273747576777879\
26
- \8081828384858687888990919293949596979899"
20
+ digits = pack
21
+ " 0001020304050607080910111213141516171819\
22
+ \2021222324252627282930313233343536373839\
23
+ \4041424344454647484950515253545556575859\
24
+ \6061626364656667686970717273747576777879\
25
+ \8081828384858687888990919293949596979899"
You can’t perform that action at this time.
0 commit comments