Remove spurious "["

This commit is contained in:
Sam 2014-12-22 13:35:46 +11:00
parent 3b1a125a79
commit c4e1109e3a

View File

@ -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;