Skip to content

Commit

Permalink
Fix brackets in Developers Dictionary description (#2188)
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 authored Oct 13, 2023
1 parent f10c456 commit 5ff7cd6
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 5ff7cd6

Please sign in to comment.