Skip to content

Commit

Permalink
Update instructions.md for grammar and admin vs developers (#2252)
Browse files Browse the repository at this point in the history
Instruction 5 referenced Authenticator.admin instead of Authenticator.developers
  • Loading branch information
mishlai authored Apr 17, 2024
1 parent b924b56 commit 85b1a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/authentication-system/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Remove the `set` accessor or make it `private` for any appropriate property on t

## 4. Ensure that the admin cannot be tampered with

At present the admin identity field is returned by a call to `Admin`. This is not ideal as the caller can modify the field. Find a way to prevent the caller modifying the details of admin on the `Authenticator` object.
At present the admin identity field is returned by a call to `Admin`. This is not ideal as the caller can modify the field. Find a way to prevent the caller from modifying the details of admin on the `Authenticator` object.

## 5. Ensure that the developers cannot be tampered with

At present the dictionary containing the hard coded privileged developer identities is returned by a call to `GetDevelopers()`. This is not ideal as the caller can modify the dictionary. Find a way to prevent the caller modifying the details of admin on the `Authenticator` object.
At present the dictionary containing the hard coded privileged developer identities is returned by a call to `GetDevelopers()`. This is not ideal as the caller can modify the dictionary. Find a way to prevent the caller from modifying the details of developers on the `Authenticator` object.

0 comments on commit 85b1a0b

Please sign in to comment.