There was an error while loading. Please reload this page.
2 parents a27432c + 98ebc1d commit 6046a67Copy full SHA for 6046a67
1 file changed
source/ch8_filehandling.ptx
@@ -14,7 +14,7 @@
14
<program interactive="activecode" language="python">
15
<code>
16
import math
17
- print(math.sqrt(25))
+ print(math.sqrt(25)) # notice the lower case 'm' in math
18
</code>
19
</program>
20
</listing>
@@ -30,7 +30,7 @@
30
31
public class SquareRoot {
32
public static void main(String[] args) {
33
- System.out.println(Math.sqrt(25));
+ System.out.println(Math.sqrt(25)); // notice the upper case 'M' in Math
34
}
35
36
0 commit comments