I just noticed a very trivial typo on an exercise description (in developer privileges on the C# track, the last example displays ["Anders" instead of {"Anders").
What is the current correct way to address such small issues? I noticed the team closed the GitHub community support so I didn’t submit a PR nor created an issue.
@ErikSchierboom maintains that track. If you’re 1000% positive, I think he usually appreciates PRs for that track.
Are you sure there should be anything there? That looks like a second key in the dict and not a list. You should triple check by printing the result from that function into the file if you do make a PR.
Yup, the example displays the content of the Dictionary, with 2 entries: the first one is written in the correct form {key,value} but the second one (which key is Anders) is written in the incorrect form [key,value}:
The former seems to balance the { but I think the latter does not balance the brackets. Feel free to propose fix here with balanced brackets - ideally something generated by a program! I think Erik would welcome a PR.