Browse code

fix comments typos

s/propogated/propagated

Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>

Chen Hanxiao authored on 2015/02/04 11:47:37
Showing 2 changed files
... ...
@@ -42,7 +42,7 @@ func init() {
42 42
 	// The command is parsed and mapped to the line parser. The line parser
43 43
 	// recieves the arguments but not the command, and returns an AST after
44 44
 	// reformulating the arguments according to the rules in the parser
45
-	// functions. Errors are propogated up by Parse() and the resulting AST can
45
+	// functions. Errors are propagated up by Parse() and the resulting AST can
46 46
 	// be incorporated directly into the existing AST as a next.
47 47
 	dispatch = map[string]func(string) (*Node, map[string]bool, error){
48 48
 		"user":       parseString,
... ...
@@ -9,7 +9,7 @@ import (
9 9
 	"testing"
10 10
 )
11 11
 
12
-// nothing is propogated in or out
12
+// nothing is propagated in or out
13 13
 func TestSubtreePrivate(t *testing.T) {
14 14
 	tmp := path.Join(os.TempDir(), "mount-tests")
15 15
 	if err := os.MkdirAll(tmp, 0777); err != nil {