From 3ce3c2cc5ddccf4d457837eee7737482b4362d52 Mon Sep 17 00:00:00 2001 From: mishlai <75583557+mishlai@users.noreply.github.com> Date: Wed, 17 Apr 2024 09:54:30 -0400 Subject: [PATCH] Update instructions.md for grammar and admin vs developers Instruction 5 referenced Authenticator.admin instead of Authenticator.developers --- exercises/concept/authentication-system/.docs/instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/concept/authentication-system/.docs/instructions.md b/exercises/concept/authentication-system/.docs/instructions.md index 4d0936d5ec..fd9c308575 100644 --- a/exercises/concept/authentication-system/.docs/instructions.md +++ b/exercises/concept/authentication-system/.docs/instructions.md @@ -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.