greyhere 2 лет назад
Родитель
Сommit
6d5529ac1e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/docs/guides/developer-guide/the-service-layer/index.mdx

+ 1 - 1
docs/docs/guides/developer-guide/the-service-layer/index.mdx

@@ -184,7 +184,7 @@ Further examples can be found in the [TypeORM Find Options documentation](https:
 ### The QueryBuilder API
 
 When the Find API is not sufficient, the QueryBuilder API can be used to construct more complex queries. For instance,
-if you want to have a more complex `WHERE` clause than can be achieved with the Find API, or if you want to perform
+if you want to have a more complex `WHERE` clause than what can be achieved with the Find API, or if you want to perform
 sub-queries, then the QueryBuilder API is the way to go.
 
 Here are some examples of using the QueryBuilder API: