From ef3192f161a89bbff11d88da523be61484a822f2 Mon Sep 17 00:00:00 2001 From: Chen Hanxiao Date: Wed, 4 Feb 2015 10:47:37 +0800 Subject: [PATCH] fix comments typos s/propogated/propagated Signed-off-by: Chen Hanxiao --- builder/parser/parser.go | 2 +- pkg/mount/sharedsubtree_linux_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/parser/parser.go b/builder/parser/parser.go index a0806c6f9a..957ecd6294 100644 --- a/builder/parser/parser.go +++ b/builder/parser/parser.go @@ -42,7 +42,7 @@ func init() { // The command is parsed and mapped to the line parser. The line parser // recieves the arguments but not the command, and returns an AST after // reformulating the arguments according to the rules in the parser - // functions. Errors are propogated up by Parse() and the resulting AST can + // functions. Errors are propagated up by Parse() and the resulting AST can // be incorporated directly into the existing AST as a next. dispatch = map[string]func(string) (*Node, map[string]bool, error){ "user": parseString, diff --git a/pkg/mount/sharedsubtree_linux_test.go b/pkg/mount/sharedsubtree_linux_test.go index 0986bd9c75..da9aa15015 100644 --- a/pkg/mount/sharedsubtree_linux_test.go +++ b/pkg/mount/sharedsubtree_linux_test.go @@ -9,7 +9,7 @@ import ( "testing" ) -// nothing is propogated in or out +// nothing is propagated in or out func TestSubtreePrivate(t *testing.T) { tmp := path.Join(os.TempDir(), "mount-tests") if err := os.MkdirAll(tmp, 0777); err != nil {