Skip to content

Commit

Permalink
fixing a few things in the code-- comma and case
Browse files Browse the repository at this point in the history
  • Loading branch information
bethrobson committed Oct 23, 2020
1 parent d6b0392 commit 52a7152
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static void main(String args[]) {

pancakeHouseMenu.add(new MenuItem(
"K&B's Pancake Breakfast",
"Pancakes with scrambled eggs, and toast",
"Pancakes with scrambled eggs and toast",
true,
2.99));
pancakeHouseMenu.add(new MenuItem(
Expand Down Expand Up @@ -55,7 +55,7 @@ public static void main(String args[]) {
false,
3.29));
dinerMenu.add(new MenuItem(
"Hotdog",
"Hot Dog",
"A hot dog, with saurkraut, relish, onions, topped with cheese",
false,
3.05));
Expand All @@ -67,7 +67,7 @@ public static void main(String args[]) {

dinerMenu.add(new MenuItem(
"Pasta",
"Spaghetti with Marinara Sauce, and a slice of sourdough bread",
"Spaghetti with marinara sauce, and a slice of sourdough bread",
true,
3.89));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static void main(String args[]) {

pancakeHouseMenu.add(new MenuItem(
"K&B's Pancake Breakfast",
"Pancakes with scrambled eggs, and toast",
"Pancakes with scrambled eggs and toast",
true,
2.99));
pancakeHouseMenu.add(new MenuItem(
Expand All @@ -30,7 +30,7 @@ public static void main(String args[]) {
2.99));
pancakeHouseMenu.add(new MenuItem(
"Blueberry Pancakes",
"Pancakes made with fresh blueberries, and blueberry syrup",
"Pancakes made with fresh blueberries and blueberry syrup",
true,
3.49));
pancakeHouseMenu.add(new MenuItem(
Expand All @@ -55,7 +55,7 @@ public static void main(String args[]) {
false,
3.29));
dinerMenu.add(new MenuItem(
"Hotdog",
"Hot Dog",
"A hot dog, with saurkraut, relish, onions, topped with cheese",
false,
3.05));
Expand All @@ -67,7 +67,7 @@ public static void main(String args[]) {

dinerMenu.add(new MenuItem(
"Pasta",
"Spaghetti with Marinara Sauce, and a slice of sourdough bread",
"Spaghetti with marinara sauce, and a slice of sourdough bread",
true,
3.89));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public PancakeHouseMenu() {
menuItems = new ArrayList<MenuItem>();

addItem("K&B's Pancake Breakfast",
"Pancakes with scrambled eggs, and toast",
"Pancakes with scrambled eggs and toast",
true,
2.99);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public PancakeHouseMenu() {
menuItems = new ArrayList<MenuItem>();

addItem("K&B's Pancake Breakfast",
"Pancakes with scrambled eggs, and toast",
"Pancakes with scrambled eggs and toast",
true,
2.99);

Expand All @@ -20,7 +20,7 @@ public PancakeHouseMenu() {
2.99);

addItem("Blueberry Pancakes",
"Pancakes made with fresh blueberries, and blueberry syrup",
"Pancakes made with fresh blueberries and blueberry syrup",
true,
3.49);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public PancakeHouseMenu() {
menuItems = new ArrayList<MenuItem>();

addItem("K&B's Pancake Breakfast",
"Pancakes with scrambled eggs, and toast",
"Pancakes with scrambled eggs and toast",
true,
2.99);

Expand All @@ -20,7 +20,7 @@ public PancakeHouseMenu() {
2.99);

addItem("Blueberry Pancakes",
"Pancakes made with fresh blueberries, and blueberry syrup",
"Pancakes made with fresh blueberries and blueberry syrup",
true,
3.49);

Expand Down

0 comments on commit 52a7152

Please sign in to comment.