Skip to content

Commit

Permalink
Fix brackets in Developers Dictionary description
Browse files Browse the repository at this point in the history
The description of the content of the Developers Dictionary was written in a inconsistent syntax.

The number of opening brackets and braces didn't match the corresponding number of closing brackets and braces.

I wrote both items in a uniform [key] = value syntax.
  • Loading branch information
Gautzilla committed Oct 12, 2023
1 parent 3dfa90e commit 62ae37c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/developer-privileges/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Implement the `Authenticator.Developers()` method to return the developers' iden
```csharp
var authenticator = new Authenticator();
authenticator.Developers;
// => {"Bertrand" = {"bert@ex.ism", {"blue", 0.8m}, ["Bertrand", "Paris", "France"]},
// ["Anders" = {"anders@ex.ism", {"brown", 0.85m}, ["Anders", "Redmond", "USA"]},
// => ["Bertrand"] = {"bert@ex.ism", {"blue", 0.8m}, ["Bertrand", "Paris", "France"]},
// ["Anders"] = {"anders@ex.ism", {"brown", 0.85m}, ["Anders", "Redmond", "USA"]},
```

0 comments on commit 62ae37c

Please sign in to comment.