Skip to content

Commit

Permalink
README.md: fix a typo
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Aug 12, 2024
1 parent 86f804d commit f7e8250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Use [`io.NewSectionReader`](https://pkg.go.dev/io#NewSectionReader) to wrap [`io
f, _ := os.Open("a.qcow2")
defer f.Close()
img, _ := qcow2reader.Open(f)
r, _ := io.NewSectionReader(img, 0, img.Size()))
r := io.NewSectionReader(img, 0, img.Size()))
```

The following features are not supported yet:
Expand Down

0 comments on commit f7e8250

Please sign in to comment.