Skip to content

Commit

Permalink
README and Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zostay committed Jul 26, 2023
1 parent d5061d9 commit aeb6cee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
WIP TBD

* Adding fs.CreateFS, fs.WriteFileFS, fs.MkdirFS, fs.ReaderFS, fs.ReaderWriterFS, and fs.WriterFS
* Adding fs.Mkdir and fs.WriteFile
* Adding fs.CreateFS, fs.WriteFileFS, fs.ReaderFS, fs.ReaderWriterFS, and fs.WriterFS
* Adding fs.MkdirAll and fs.WriteFile

v0.4.0 2023-07-14

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ provided tools:

The built-in `io/fs` package is fine for reading files, but is missing write interfaces. This provides them:

* `FileWriter` (analogous to `fs.File`, but for writes)
* `CreateFS`
* `WriteFileFS`
* `MkdirFS`

And then provides some additional general interfaces:

Expand All @@ -20,7 +20,7 @@ And then provides some additional general interfaces:

And provides some convenience functions for working with them:

* `Mkdir(fsys, name, perm)`
* `MkdirAll(fsys, name, perm)`
* `WriteFile(fsys, name, data, perm)`

## Generic/Interface Comparison
Expand Down

0 comments on commit aeb6cee

Please sign in to comment.