summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'java.html.markdown')
-rw-r--r--java.html.markdown10
1 files changed, 5 insertions, 5 deletions
diff --git a/java.html.markdown b/java.html.markdown
index f28e953a..a7060317 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -56,9 +56,9 @@ public class LearnJava {
// Input/Output
///////////////////////////////////////
- /*
- * Ouput
- */
+ /*
+ * Ouput
+ */
// Use System.out.println() to print lines.
System.out.println("Hello World!");
@@ -75,8 +75,8 @@ public class LearnJava {
System.out.printf("pi = %.5f", Math.PI); // => pi = 3.14159
/*
- * Input
- */
+ * Input
+ */
// use Scanner to read input
// must import java.util.Scanner;