Skip to content

Commit 58d82a0

Browse files
authored
[Bank Account]: Fix instructions.append.md Admonition (#3872)
Misspelling of Exercism as well as backticks broke formatting on site.
1 parent 2a69f42 commit 58d82a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/practice/bank-account/.docs/instructions.append.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Instructions append
22

3-
````exercim/note
3+
~~~~exercism/note
44
Python doesn't support "true" concurrency due to the [Global Interpreter Lock][GIL].
55
While work is ongoing to create support for [free-threading in Python][free-threading], it is still experimental.
66
Current standard library solutions such as [multiprocessing][multiprocessing-module] and [threading][threading-module] are difficult to implement with the current track tooling.
@@ -13,7 +13,7 @@ Account operations are sequential on a single thread, and no concurrency or "rac
1313
[free-threading]: https://docs.python.org/3/howto/free-threading-python.html
1414
[threading-module]: https://docs.python.org/3/library/threading.html#module-threading
1515
[multiprocessing-module]: https://docs.python.org/3/library/multiprocessing.html#sharing-state-between-processes
16-
````
16+
~~~~
1717

1818
<br>
1919

@@ -38,4 +38,4 @@ raise ValueError('amount must be greater than 0')
3838

3939
# withdrawal is too big
4040
raise ValueError('amount must be less than balance')
41-
```
41+
```

0 commit comments

Comments
 (0)