diff --git a/source/ch8_filehandling.ptx b/source/ch8_filehandling.ptx index aa86bf3..be024d0 100644 --- a/source/ch8_filehandling.ptx +++ b/source/ch8_filehandling.ptx @@ -12,7 +12,7 @@ import math - print(math.sqrt(25)) + print(math.sqrt(25)) # notice the lower case 'm' in math @@ -25,7 +25,7 @@ public class SquareRoot { public static void main(String[] args) { - System.out.println(Math.sqrt(25)); + System.out.println(Math.sqrt(25)); // notice the upper case 'M' in Math } }