summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2014-12-22 12:48:17 +0100
committerAdam Bard <github@adambard.com>2014-12-22 12:48:17 +0100
commit3e6c93efa2b10989f0290938c97dbf8bb5de86ad (patch)
tree7cdcb7e5bc9d17e6a35504026631025fd343ec3d
parent3b1a125a79528bade19fa797da3ce3885c9ef892 (diff)
parentc4e1109e3aeef641798a59daf56f82aa60dc81ff (diff)
Merge pull request #892 from sam-m888/patch-1
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;