From d44167426d1f2b438d759c182c388032e44ba119 Mon Sep 17 00:00:00 2001 From: Dumitru Uzun Date: Wed, 27 Jun 2018 21:33:19 +0300 Subject: [PATCH] Fixed a typo --- chapters/data_compression/data_compression.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/data_compression/data_compression.md b/chapters/data_compression/data_compression.md index 2bdc4b721..5b0b67683 100644 --- a/chapters/data_compression/data_compression.md +++ b/chapters/data_compression/data_compression.md @@ -6,7 +6,7 @@ It would naively seem that better hardware means that there are less restriction That said, there will always be new devices on the market that require minimizing data storage. In fact, some of the most revolutionary algorithms and methods in existence today fall in the category of data compression. -From lossless data compression with [Huffman encoding](huffman/huffman.md) to genetic compression algorithms and machien learning, there is a lot to learn about this field, and we'll go through it piece-by-piece. +From lossless data compression with [Huffman encoding](huffman/huffman.md) to genetic compression algorithms and machine learning, there is a lot to learn about this field, and we'll go through it piece-by-piece. All that said, no discussion about data compression is complete without first discussing the information, itself -- specifically how information is represented in computer systems. Now, we've discussed this in some depth before with [bitlogic](../principles_of_code/building_blocks/bitlogic.md), but there is much more to the story than what we let on before.