diff --git a/src/tutorials/0004-mutable-file-system/07.md b/src/tutorials/0004-mutable-file-system/07.md index 4463edf5..f79a3c95 100644 --- a/src/tutorials/0004-mutable-file-system/07.md +++ b/src/tutorials/0004-mutable-file-system/07.md @@ -17,7 +17,7 @@ await ipfs.files.mkdir('/images') An optional `parents` property, which defaults to `false`, specifies whether any parent directories in the given path should be created if they don't already exist. We didn't need that above, because the new `images` directory was a direct child of an existing -directory ( `/` ). However, if we instead wanted to created a new directory +directory ( `/` ). However, if we instead wanted to create a new directory nested under others that don't yet exist, we'd need to explicitly set the value of `parents` to `true`, like so: