summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2015-10-28 17:21:06 +0800
committerGeoff Liu <cangming.liu@gmail.com>2015-10-28 17:21:06 +0800
commit8875913b2e989ace6ea742b6c38a5f1e4cfa579d (patch)
tree29553c1d132943d88bd703cad0d060afc8cef912 /java.html.markdown
parent91db30e578d029cc3313343b6686762b0ac4f9fe (diff)
parentecbd4540681a99cb83a201f3f09deaf2af3fb58f (diff)
Merge pull request #1719 from pelmers/indent_fixes
[java,matlab/en] Inconsistent tabs and spaces.
Diffstat (limited to 'java.html.markdown')
-rw-r--r--java.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/java.html.markdown b/java.html.markdown
index aae64ccf..efc4407b 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -186,9 +186,9 @@ public class LearnJava {
// operations perform as could be expected for a
// doubly-linked list.
// Maps - A set of objects that map keys to values. Map is
- // an interface and therefore cannot be instantiated.
- // The type of keys and values contained in a Map must
- // be specified upon instantiation of the implementing
+ // an interface and therefore cannot be instantiated.
+ // The type of keys and values contained in a Map must
+ // be specified upon instantiation of the implementing
// class. Each key may map to only one corresponding value,
// and each key may appear only once (no duplicates).
// HashMaps - This class uses a hashtable to implement the Map