summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2019-07-03 23:13:44 (GMT)
committerGitHub <noreply@github.com>2019-07-03 23:13:44 (GMT)
commitfb52a10ced0c1b1dc7f9145d5e0fbb32c756b391 (patch)
treea6d834a89ce75d50fb7b872b74dd2f895627a19b
parent4765da5ac48ea8406c83a58a69e78f00ecfc43f4 (diff)
parent0e6ff83d091e151ad510845bb3b4ebb42314f6a3 (diff)
downloadlz4-fb52a10ced0c1b1dc7f9145d5e0fbb32c756b391.zip
lz4-fb52a10ced0c1b1dc7f9145d5e0fbb32c756b391.tar.gz
lz4-fb52a10ced0c1b1dc7f9145d5e0fbb32c756b391.tar.bz2
Merge pull request #748 from amchoukir/amchoukir-doublebuffer-doc
Update blockStreaming_doubleBuffer.md
-rw-r--r--examples/blockStreaming_doubleBuffer.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/blockStreaming_doubleBuffer.md b/examples/blockStreaming_doubleBuffer.md
index 3027ea3..38dc2e8 100644
--- a/examples/blockStreaming_doubleBuffer.md
+++ b/examples/blockStreaming_doubleBuffer.md
@@ -1,7 +1,7 @@
# LZ4 Streaming API Example : Double Buffer
by *Takayuki Matsuoka*
-`blockStreaming_doubleBuffer.c` is LZ4 Straming API example which implements double buffer (de)compression.
+`blockStreaming_doubleBuffer.c` is LZ4 Streaming API example which implements double buffer (de)compression.
Please note :
@@ -76,10 +76,10 @@ so it just compress the line without dependencies and generates compressed block
After that, write {Out#1} to the file.
Next, read second block to double buffer's second page. And compress it.
-In this time, LZ4 can use dependency to Block#1 to improve compression ratio.
+This time, LZ4 can use dependency to Block#1 to improve compression ratio.
This dependency is called "Prefix mode".
-Next, read third block to double buffer's *first* page. And compress it.
+Next, read third block to double buffer's *first* page, and compress it.
Also this time, LZ4 can use dependency to Block#2.
This dependency is called "External Dictonaly mode".