Merge pull request #10544 from chenhanxiao/comment-typo

fix comments typos
This commit is contained in:
Alexander Morozov 2015-02-03 20:09:05 -08:00
commit bdbdbcc945
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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 {