From a728e7a674011f6b589e623b30d4bab06d8165ee Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Mon, 15 Mar 2021 21:45:44 -0700 Subject: [PATCH] Fix typo --- source/httpfs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/httpfs/README.md b/source/httpfs/README.md index 22c609b7b..f29b89df5 100644 --- a/source/httpfs/README.md +++ b/source/httpfs/README.md @@ -36,7 +36,7 @@ with `http.FileSystem` provided by the user of this package. It is created with Example of using `http.Dir()` to read migrations from `sql` directory: ```go - src, err := httpfs.New(http.Dir("sql") + src, err := httpfs.New(http.Dir("sql")) if err != nil { // do something }