Skip to content

Commit

Permalink
Clean up from review
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark McCaskey committed Aug 31, 2020
1 parent 0d16267 commit e4e41f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

## **[Unreleased]**
- [#1566](https://github.com/wasmerio/wasmer/pull/1566) Add support for opening special Unix files to the WASI FS

## TODO: 1.0.0-alpha1.0
- Wasmer refactor lands

## TODO: 17...

- [#1382](https://github.com/wasmerio/wasmer/pull/1382) Refactored test infranstructure (part 2)
- [#1380](https://github.com/wasmerio/wasmer/pull/1380) Refactored test infranstructure (part 1)
Expand Down
4 changes: 2 additions & 2 deletions lib/wasi/src/state/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ impl WasiFs {
Ok(self.create_inode_with_stat(kind, is_preopened, name, stat))
}

/// creates an inode and inserts it given a Kind, does not assume the file exists to
/// Creates an inode and inserts it given a Kind, does not assume the file exists.
pub(crate) fn create_inode_with_default_stat(
&mut self,
kind: Kind,
Expand All @@ -1243,7 +1243,7 @@ impl WasiFs {
self.create_inode_with_stat(kind, is_preopened, name, stat)
}

/// creates an inode with the given filestat and insert it.
/// Creates an inode with the given filestat and inserts it.
pub(crate) fn create_inode_with_stat(
&mut self,
kind: Kind,
Expand Down

0 comments on commit e4e41f4

Please sign in to comment.