There was an error while loading. Please reload this page.
1 parent c116c55 commit 98ebc1dCopy full SHA for 98ebc1d
1 file changed
source/ch8_filehandling.ptx
@@ -12,7 +12,7 @@
12
<program xml:id = "file-class-import-Python-example" interactive="activecode" language="python">
13
<code>
14
import math
15
- print(math.sqrt(25))
+ print(math.sqrt(25)) # notice the lower case 'm' in math
16
</code>
17
</program>
18
@@ -25,7 +25,7 @@
25
26
public class SquareRoot {
27
public static void main(String[] args) {
28
- System.out.println(Math.sqrt(25));
+ System.out.println(Math.sqrt(25)); // notice the upper case 'M' in Math
29
}
30
31
0 commit comments