diff --git a/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java b/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java index ee258ae..0996eaa 100644 --- a/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java +++ b/Course 1 - Introduction to JAVA/Lecture 8 - Functions and Scope/TempConvTable.java @@ -44,7 +44,7 @@ Fahrenheit value and its corresponding Celsius value should be separate by tab ( */ import java.util.*; -public TempConvTable { +public class TempConvTable { public static void printFahrenheitTable(int start, int end, int step) { /* Don't write main(). * Don't read input, it is passed as function argument.