From f7e8250cac0c14e29fd3caefe65a7d59c85a8d6f Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 12 Aug 2024 20:53:37 +0900 Subject: [PATCH] README.md: fix a typo Signed-off-by: Akihiro Suda --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ce85ed..17cee89 100644 --- a/README.md +++ b/README.md @@ -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: