Skip to content

Commit e308cdb

Browse files
committed
Fixed a typo
1 parent 898f7cd commit e308cdb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/com/nighthacking/JavaScale.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.nighthacking;
22

33
import com.nighthacking.recipes.AeroPressCoffee;
4-
import com.nighthacking.recipe.CommandLineReciperRunner;
4+
import com.nighthacking.recipe.CommandLineRecipeRunner;
55
import com.nighthacking.recipes.CoffeeCalculator;
66

77
/**
@@ -10,7 +10,7 @@
1010
public class JavaScale {
1111

1212
public static void main(String[] args) throws InterruptedException {
13-
CommandLineReciperRunner runner = new CommandLineReciperRunner();
13+
CommandLineRecipeRunner runner = new CommandLineRecipeRunner();
1414
runner.runRecipe(new AeroPressCoffee(CoffeeCalculator.STRONG));
1515
runner.close();
1616
}

0 commit comments

Comments
 (0)