From 48175879033de149694bfab75526e03b88cd74ba Mon Sep 17 00:00:00 2001 From: Paul Willis Date: Wed, 3 Sep 2025 16:32:58 +0100 Subject: [PATCH] Update README.md Small fixes to spelling in README file Motivation: Improve readability of documentation Modifications: Fixed spelling for "increment" and "decrement" where an additional "e" was included Result: README is more readable with fewer grammar/spelling issues --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb9f3e4..9da5c46 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ floatingPointCounter.increment(by: 10.5) gauge.record(100) ``` -`Meter`: A Meter is similar to `Gauge` - a metric that represents a single numerical value that can arbitrarily go up and down. Meters are typically used for measured values like temperatures or current memory usage, but also "counts" that can go up and down, like the number of active threads. Unlike `Gauge`, `Meter` also supports atomic incerements and decerements. +`Meter`: A Meter is similar to `Gauge` - a metric that represents a single numerical value that can arbitrarily go up and down. Meters are typically used for measured values like temperatures or current memory usage, but also "counts" that can go up and down, like the number of active threads. Unlike `Gauge`, `Meter` also supports atomic increments and decrements. ```swift meter.record(100)