From 54a032bba288ab750189e3c0e8a196f84a015cdd Mon Sep 17 00:00:00 2001 From: Faraz Samapoor Date: Thu, 2 Jun 2022 09:24:54 +0430 Subject: [PATCH] fix typo in README.md. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1f83da..1920dac 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ SubscriptionStats::increase(); // execute whenever somebody subscribes SubscriptionStats::decrease(); // execute whenever somebody cancels the subscription; ``` -Instead of manually increasing and decreasing the stat, you can directly set it. This is useful when you particular stat does not get calculated by your own app, but lives elsewhere. Using the subscription example, let's image that subscriptions live elsewhere, and that there's an API call to get the count. +Instead of manually increasing and decreasing the stat, you can directly set it. This is useful when your particular stat does not get calculated by your own app, but lives elsewhere. Using the subscription example, let's image that subscriptions live elsewhere, and that there's an API call to get the count. ```php $count = AnAPi::getSubscriptionCount();