summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSam <manzi.sam@gmail.com>2014-12-22 13:35:46 +1100
committerSam <manzi.sam@gmail.com>2014-12-22 13:35:46 +1100
commitc4e1109e3aeef641798a59daf56f82aa60dc81ff (patch)
tree7cdcb7e5bc9d17e6a35504026631025fd343ec3d
parent3b1a125a79528bade19fa797da3ce3885c9ef892 (diff)
Remove spurious "["
-rw-r--r--java.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown
index f08c4679..32febcfd 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -49,7 +49,7 @@ public class LearnJava {
// Types & Variables
///////////////////////////////////////
- // Declare a variable using <type> <name> [
+ // Declare a variable using <type> <name>
// Byte - 8-bit signed two's complement integer
// (-128 <= byte <= 127)
byte fooByte = 100;