Просмотр исходного кода

docs: Add missing word in docs (#2479)

Lacey Pevey 2 лет назад
Родитель
Сommit
19e735408e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/docs/guides/developer-guide/rest-endpoint/index.md

+ 1 - 1
docs/docs/guides/developer-guide/rest-endpoint/index.md

@@ -9,7 +9,7 @@ REST-style endpoints can be defined as part of a [plugin](/guides/developer-guid
 REST endpoints are implemented as NestJS Controllers. For comprehensive documentation, see the [NestJS controllers documentation](https://docs.nestjs.com/controllers).
 :::
 
-In this guide we will define a plugin adds a single REST endpoint at `http://localhost:3000/products` which returns a list of all products.
+In this guide we will define a plugin that adds a single REST endpoint at `http://localhost:3000/products` which returns a list of all products.
 
 ## Create a controller