Skip to content

Commit

Permalink
[issue #1] typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nurzhan-saktaganov authored Jun 22, 2019
1 parent 013ae22 commit 1dd322a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Need extends Requirement {
}

isSatisfied(credentials) {
// assume credentilas is an object
// assume credentials is an object
return credentials[this.permission] ? true : false;
}
}
Expand Down Expand Up @@ -137,7 +137,7 @@ class Credentials {
class MyRequirement extends Requirement {
...
isSatisfied(credentials) {
return credentilas.satisfies(this);
return credentials.satisfies(this);
}
}

Expand Down

0 comments on commit 1dd322a

Please sign in to comment.