Skip to content

Commit e098065

Browse files
authored
guide.md: corrected reference to dictionary value
Changed reference to "the second value" of dictionary to "the value that corresponds to the key `2`."
1 parent b3c35ca commit e098065

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_extras/guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ installation. Otherwise, it will tell you that the system is good to go and read
4141

4242
### Dictionaries Challenges
4343

44-
* Changing dictionaries: 2. Reassign the second value.
44+
* Changing dictionaries: 2. Reassign the value that corresponds to the key `2`.
4545

46-
Make sure it is also clear that access to 'the second value' is actually just about the key name. Add for example `rev[10] = "ten"` to clarify it is not about the position.
46+
Make sure it is also clear that access to 'the value that corresponds to the key `2`' is actually just about the key name. Add for example `rev[10] = "ten"` to clarify it is not about the position.
4747

4848
~~~
4949
rev

0 commit comments

Comments
 (0)