Skip to content

Commit 5b1ef82

Browse files
ErikSchierboomBethanyG
authored andcommitted
basics: fix markdown
1 parent d783bd1 commit 5b1ef82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

concepts/basics/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ On the Python track, [variables][variables] are always written in [`snake_case`]
4141
## Name Assignment (Variables & Constants)
4242

4343
In Python, there are no keywords used in creating variables or constants.
44-
Instead, programmers can bind [_names_][facts-and-myths-about-python-names] (also called _variables__) to any type of object using the assignment `=` operator: `<name> = <value>`.
44+
Instead, programmers can bind [_names_][facts-and-myths-about-python-names] (also called _variables_) to any type of object using the assignment `=` operator: `<name> = <value>`.
4545
A name can be reassigned (or re-bound) to different values (different object types) over its lifetime.
4646

4747
For example, `my_first_variable` can be re-assigned many times using `=`, and can refer to different object types with each re-assignment:

concepts/basics/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Python was created by Guido van Rossum and first released in 1991.
1212

1313
## Name Assignment (Variables & Constants)
1414

15-
Programmers can bind [_names_][facts-and-myths-about-python-names] (also called _variables__) to any type of object using the assignment `=` operator: `<name> = <value>`.
15+
Programmers can bind [_names_][facts-and-myths-about-python-names] (also called _variables_) to any type of object using the assignment `=` operator: `<name> = <value>`.
1616
A name can be reassigned (or re-bound) to different values (different object types) over its lifetime.
1717

1818

exercises/concept/guidos-gorgeous-lasagna/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ On the Python track, [variables][variables] are always written in [`snake_case`]
2424

2525
## Name Assignment (Variables & Constants)
2626

27-
Programmers can bind [_names_][facts-and-myths-about-python-names] (also called _variables__) to any type of object using the assignment `=` operator: `<name> = <value>`.
27+
Programmers can bind [_names_][facts-and-myths-about-python-names] (also called _variables_) to any type of object using the assignment `=` operator: `<name> = <value>`.
2828
A name can be reassigned (or re-bound) to different values (different object types) over its lifetime.
2929

3030

0 commit comments

Comments
 (0)