From a865681c6708c1a854d454c79d27605b37b71060 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 24 Oct 2018 21:16:16 -0400 Subject: [PATCH] Corrected a spelling mistake --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c895ae4..8f665e8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # tagtrics -tagtrics allows developers to keep all their metrics in a central `struct` using types from the great library [go-metrics](https://github.com/rcrowley/go-metrics) and initialized with struct tags. This allows developers to share the instance of this `struct` in the application and easiliy update metrics. The advantages to this approach include: +tagtrics allows developers to keep all their metrics in a central `struct` using types from the great library [go-metrics](https://github.com/rcrowley/go-metrics) and initialized with struct tags. This allows developers to share the instance of this `struct` in the application and easily update metrics. The advantages to this approach include: * **Logic** - The logic of the application does not change when a new system is used as a centralized metrics store. * **Typed Metrics** - Metrics do not have to be defined in strings. Each metric has a type and they can be embedded in structs. The name of each metric is derived from the structs.