Merge pull request #32 from tylernisonoff/master

fixed spelling mistake -- memoory -> memory
This commit is contained in:
Evan Phoenix 2015-07-01 11:33:25 -07:00
commit 6e8a298d21
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ func Gather(acc plugins.Accumulator) error {
}
acc.Add("cpu", process.CPUTime, tags)
acc.Add("memoory", process.MemoryBytes, tags)
acc.Add("memory", process.MemoryBytes, tags)
}
}
```