Skip to content

Commit

Permalink
Merge pull request #29 from AkihiroSuda/dev
Browse files Browse the repository at this point in the history
README.md: fix a typo
  • Loading branch information
AkihiroSuda authored Aug 12, 2024
2 parents 86f804d + f7e8250 commit 1880999
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 1880999

Please sign in to comment.