aboutsummaryrefslogtreecommitdiff
path: root/src/huffmantree.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/huffmantree.nim')
-rw-r--r--src/huffmantree.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/huffmantree.nim b/src/huffmantree.nim
index 0266dfb..6208ecf 100644
--- a/src/huffmantree.nim
+++ b/src/huffmantree.nim
@@ -15,7 +15,7 @@
15# along with this program. If not, see <https://www.gnu.org/licenses/>. 15# along with this program. If not, see <https://www.gnu.org/licenses/>.
16 16
17import tables, heapqueue 17import tables, heapqueue
18import integers, bitreader, bitwriter 18import integers, bitio/bitreader, bitio/bitwriter
19 19
20const valueLengthFieldBitLength* = 6 # 64 20const valueLengthFieldBitLength* = 6 # 64
21 21