Skip to content

Commit

Permalink
Merge pull request #81 from codermarcel/master
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
Ocramius committed Mar 22, 2016
2 parents 61401ee + 653dee6 commit 397d8f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public function setHeader(string $name, $value): Builder
public function set(string $name, $value): Builder
{
if ($this->signature) {
throw new BadMethodCallException('You must unsign before make changes');
throw new BadMethodCallException('You must unsign before making changes');
}

$this->claims[$name] = $this->claimFactory->create($name, $value);
Expand Down

0 comments on commit 397d8f5

Please sign in to comment.