Browse Source

fix(docs): Correct typo in writing-a-vendure-plugin.md (#1983)

Pieter Doms 3 years ago
parent
commit
1903064f16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/content/plugins/writing-a-vendure-plugin.md

+ 1 - 1
docs/content/plugins/writing-a-vendure-plugin.md

@@ -141,7 +141,7 @@ export class RandomCatPlugin {}
 
 ### Step 6: Declare any providers used in the resolver
 
-In order that out resolver is able to use Nest's dependency injection to inject and instance of `CatFetcher`, we must add it to the `providers` array in our plugin:
+In order that our resolver is able to use Nest's dependency injection to inject an instance of `CatFetcher`, we must add it to the `providers` array in our plugin:
 
 ```TypeScript
 @VendurePlugin({