Skip to content

Commit 67b3757

Browse files
zakweb3BethanyG
andauthored
Fixed small typo in introduction.md (exercism#3621)
* Update introduction.md Fixed small typo in line 65 replaced : with = * Update about.md Replaced : with = in line 101 * Apply suggestions from code review * Update concepts/tuples/about.md --------- Co-authored-by: BethanyG <BethanyG@users.noreply.github.com>
1 parent 2e5051a commit 67b3757

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

concepts/tuples/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Other data structures can be included as `tuple` elements, including other `tupl
9898
>>> nested_data_structures = ({"fish": "gold", "monkey": "brown", "parrot" : "grey"}, ("fish", "mammal", "bird"))
9999
({"fish": "gold", "monkey": "brown", "parrot" : "grey"}, ("fish", "mammal", "bird"))
100100

101-
>>> nested_data_structures_1 : (["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
101+
>>> nested_data_structures_1 = (["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
102102
(["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
103103
```
104104

@@ -225,5 +225,5 @@ Additionally, users can adapt a [`dataclass`][dataclass] to provide similar name
225225
[mutable sequence operations]: https://docs.python.org/3/library/stdtypes.html#mutable-sequence-types
226226
[namedtuple]: https://docs.python.org/3/library/collections.html#collections.namedtuple
227227
[sequence]: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
228-
[set]: https://github.com/exercism/v3/blob/master/languages/python/reference/concepts/builtin_types/set.md
229-
[tuple]: https://github.com/exercism/v3/blob/master/languages/python/reference/concepts/builtin_types/tuple.md
228+
[set]: https://docs.python.org/3/library/stdtypes.html#set
229+
[tuple]: https://docs.python.org/3/library/stdtypes.html#tuple

exercises/concept/tisbury-treasure-hunt/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Nested data structures can be included as `tuple` elements, including other `tup
6262
>>> nested_data_structures = ({"fish": "gold", "monkey": "brown", "parrot" : "grey"}, ("fish", "mammal", "bird"))
6363
({"fish": "gold", "monkey": "brown", "parrot" : "grey"}, ("fish", "mammal", "bird"))
6464

65-
>>> nested_data_structures_1 : (["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
65+
>>> nested_data_structures_1 = (["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
6666
(["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
6767
```
6868

0 commit comments

Comments
 (0)