From 815e9534b8afbf6ed7764c256b7a045c976b31a9 Mon Sep 17 00:00:00 2001 From: Tyler Nisonoff Date: Sat, 27 Jun 2015 12:56:27 -0700 Subject: [PATCH] fixed spelling mistake -- memoory -> memory --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d72701aaf..0d7223bc2 100644 --- a/README.md +++ b/README.md @@ -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) } } ```