We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 898f7cd commit e308cdbCopy full SHA for e308cdb
1 file changed
src/com/nighthacking/JavaScale.java
@@ -1,7 +1,7 @@
1
package com.nighthacking;
2
3
import com.nighthacking.recipes.AeroPressCoffee;
4
-import com.nighthacking.recipe.CommandLineReciperRunner;
+import com.nighthacking.recipe.CommandLineRecipeRunner;
5
import com.nighthacking.recipes.CoffeeCalculator;
6
7
/**
@@ -10,7 +10,7 @@
10
public class JavaScale {
11
12
public static void main(String[] args) throws InterruptedException {
13
- CommandLineReciperRunner runner = new CommandLineReciperRunner();
+ CommandLineRecipeRunner runner = new CommandLineRecipeRunner();
14
runner.runRecipe(new AeroPressCoffee(CoffeeCalculator.STRONG));
15
runner.close();
16
}
0 commit comments