Skip to content

Commit 26964c4

Browse files
committed
Fix typo in docs
1 parent ce193a4 commit 26964c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Gauges can go up and down.
5353
from prometheus_client import Gauge
5454
g = Gauge('my_inprogress_requests', 'Description of gauge')
5555
g.inc() # Increment by 1
56-
g.dev(10) # Decrement by given value
56+
g.dec(10) # Decrement by given value
5757
g.set(4.2) # Set to a given value
5858
```
5959

0 commit comments

Comments
 (0)