Skip to content

Commit aacf192

Browse files
committed
fix some mistakes
1 parent 2929d8e commit aacf192

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Same chart with another order and description:
6161

6262
![Block Size Chart](Doc/Images/chart_comprrate2.png)
6363

64-
This chart shows, that bzip2 is best archiver, but it compression rate is **50** times slower than Blazer. GZip is **10** times slower. So, if you need acceptable compression rate but high speed:
64+
This chart shows that bzip2 is best archiver, but it compression rate is **50** times slower than Blazer. GZip is **10** times slower. So, if you need acceptable compression rate but high speed:
6565
Blazer is good choice for you.
6666

6767
## Usage
@@ -82,11 +82,12 @@ using (var bs = new BlazerInputStream(File.Create("compressed.blz"), BlazerCompr
8282
Decompression the same:
8383

8484
```
85-
using (var bs = new BlazerOutputStream(File.Create("compressed.blz")))
85+
using (var bs = new BlazerOutputStream(File.OpenRead("compressed.blz")))
8686
bs.CopyTo(File.OpenWrite("decompressed.txt"));
8787
```
8888

8989
Other variant is use Blazer.exe console archiver.
90+
9091
*Documentation in progress*
9192

9293
## Features

0 commit comments

Comments
 (0)