From 32ce8c91471fef759fc2add850fb4bb708110cd4 Mon Sep 17 00:00:00 2001 From: Reece Dunham Date: Wed, 6 Jan 2021 20:24:05 -0500 Subject: [PATCH] Fix readme grammar issues --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1377197..b991f9e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Tapable -The tapable package expose many Hook classes, which can be used to create hooks for plugins. +The tapable package exposes many Hook classes, which can be used to create hooks for plugins. ``` javascript const { @@ -88,7 +88,7 @@ myCar.hooks.calculateRoutes.tap("CachedRoutesPlugin", (source, target, routesLis routesList.add(cachedRoute); }) ``` -The class declaring these hooks need to call them: +The class declaring these hooks needs to call them: ``` js class Car {