Преглед на файлове

Typo: "ir" should have been "or"

Shawn Hooper преди 5 години
родител
ревизия
9786f1a8c7
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      docs/documenting/documenting-endpoint-body-parameters.md

+ 1 - 1
docs/documenting/documenting-endpoint-body-parameters.md

@@ -60,7 +60,7 @@ public function createPost(CreatePostRequest $request)
 ```
 
 ### Handling array and object parameters
-Sometimes you have body parameters that are arrays ir ibjects. To handle them in `@bodyparam`, Scribe follows Laravel's convention:
+Sometimes you have body parameters that are arrays or ibjects. To handle them in `@bodyparam`, Scribe follows Laravel's convention:
 - For arrays: use `<name>.*`
 - For objects: use `<name>.<key>`.