Skip to content

Commit b7b6f29

Browse files
committed
Merge pull request KnpLabs#259 from daniellienert/patch-1
[FIX] Add missing closing bracket in pullRequest example code
2 parents d561376 + 7e2a630 commit b7b6f29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/pull_requests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ $pullRequest = $client->api('pull_request')->create('ezsystems', 'ezpublish', ar
6767
'head' => 'testbranch',
6868
'title' => 'My nifty pull request',
6969
'body' => 'This pull request contains a bunch of enhancements and bug-fixes, happily shared with you'
70-
);
70+
));
7171
```
7272

7373
This returns the details of the pull request.
@@ -83,7 +83,7 @@ $pullRequest = $client->api('pull_request')->create('ezsystems', 'ezpublish', ar
8383
'base' => 'master',
8484
'head' => 'testbranch',
8585
'issue' => 15
86-
);
86+
));
8787
```
8888

8989
This returns the details of the pull request.

0 commit comments

Comments
 (0)