Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 913a393

Browse files
committedAug 8, 2015
fix comments and spelling error
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
1 parent b57522c commit 913a393

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎core/commands/mfs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ var MfsCreateCmd = &cmds.Command{
120120
Creates a new mutable filesystem based on an optional root hash.
121121
122122
Currently, it creates a filesystem with no special publish actions,
123-
all changes are merely propogated to the root, and are reflected in the hash
123+
all changes are merely propagated to the root, and are reflected in the hash
124124
displayed by 'ipfs mfs'. In the future, this command will allow you to specify
125125
publish actions and close actions for a given filesystem
126126
`,

‎mfs/system.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
// package mfs implements an in memory model of a mutable ipns filesystem,
2-
// to be used by the fuse filesystem.
1+
// package mfs implements an in memory model of a mutable ipfs filesystem.
32
//
43
// It consists of four main structs:
54
// 1) The Filesystem
6-
// The filesystem serves as a container and entry point for the ipns filesystem
5+
// The filesystem serves as a container and entry point for various mfs filesystems
76
// 2) Root
8-
// Root represent the root of the keyspace controlled by a given keypair
7+
// Root represents an individual filesystem mounted within the mfs system as a whole
98
// 3) Directories
109
// 4) Files
1110
package mfs

0 commit comments

Comments
 (0)
Please sign in to comment.