We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c587194 commit e385f73Copy full SHA for e385f73
src/BehavioralPatterns/State/StateLibrary/SteakCookingExample/States/Common/Doneness.cs
@@ -2,7 +2,7 @@
2
{
3
/// <summary>
4
/// Doneness is a gauge of how thoroughly cooked a cut of meat is based on
5
- /// itscolour, juiciness, and internal temperature when cooked.
+ /// its color, juiciness, and internal temperature when cooked.
6
/// In this example we use celsisus degree as a unit of temperature measurment.
7
/// </summary>
8
public abstract class Doneness
@@ -15,7 +15,7 @@ public abstract class Doneness
15
protected int _temperatureChangeStep;
16
17
protected Doneness(Doneness state)
18
- : base()
+ : this()
19
20
_steak = state.Steak;
21
_currentTemperature = state.CurrentTemperature;
0 commit comments