Skip to content

Commit ab7852e

Browse files
authored
[Meltdown Mitigation]: Corrected "critical" to "balanced in criticality" on line 15 of Instructions (#3993)
* Corrected critical to balanced in criticaltiy on line 15 of intructions. * Corrected docstring to refer to balanced in criticality.
1 parent 67d865b commit ab7852e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exercises/concept/meltdown-mitigation/.docs/instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ The following three tasks are all related to writing code for maintaining ideal
1111

1212
## 1. Check for criticality
1313

14-
The first thing a control system has to do is check if the reactor is balanced in criticality.
15-
A reactor is said to be critical if it satisfies the following conditions:
14+
The first thing a control system has to do is check if the reactor is _balanced in criticality_.
15+
A reactor is said to be balanced in criticality if it satisfies the following conditions:
1616

1717
- The temperature is less than 800 K.
1818
- The number of neutrons emitted per second is greater than 500.

exercises/concept/meltdown-mitigation/conditionals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def is_criticality_balanced(temperature, neutrons_emitted):
88
:param neutrons_emitted: int or float - number of neutrons emitted per second.
99
:return: bool - is criticality balanced?
1010
11-
A reactor is said to be critical if it satisfies the following conditions:
11+
A reactor is said to be balanced in criticality if it satisfies the following conditions:
1212
- The temperature is less than 800 K.
1313
- The number of neutrons emitted per second is greater than 500.
1414
- The product of temperature and neutrons emitted per second is less than 500000.

0 commit comments

Comments
 (0)