소스 검색

Merge pull request #34 from shawnhooper/patch-1

Typo: "ir" should have been "or"
Shalvah 5 년 전
부모
커밋
f315b8059d
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 objects. To handle them in `@bodyparam`, Scribe follows Laravel's convention:
 - For arrays: use `<name>.*`
 - For objects: use `<name>.<key>`.