Repository: commons-collections Updated Branches: refs/heads/master 80238cd1c -> 1750ac984
IdentityMap: correct JavaDoc This closes #47 Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/c4f4528b Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/c4f4528b Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/c4f4528b Branch: refs/heads/master Commit: c4f4528b35aa3639c1e47a6ff357399b5a530f10 Parents: 80238cd Author: Eitan Adler <[email protected]> Authored: Mon Jul 23 00:51:53 2018 -0700 Committer: Bruno P. Kinoshita <[email protected]> Committed: Mon Jul 23 20:56:26 2018 +1200 ---------------------------------------------------------------------- src/test/java/org/apache/commons/collections4/map/IdentityMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-collections/blob/c4f4528b/src/test/java/org/apache/commons/collections4/map/IdentityMap.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/collections4/map/IdentityMap.java b/src/test/java/org/apache/commons/collections4/map/IdentityMap.java index 8e83f5a..cff89ae 100644 --- a/src/test/java/org/apache/commons/collections4/map/IdentityMap.java +++ b/src/test/java/org/apache/commons/collections4/map/IdentityMap.java @@ -26,7 +26,7 @@ import java.util.Map; * A <code>Map</code> implementation that matches keys and values based * on <code>==</code> not <code>equals()</code>. * <p> - * <strong>This map will violate the detail of various Map and map view contracts.</note> + * <strong>This map will violate the detail of various Map and map view contracts.</strong> * As a general rule, don't compare this map to other maps. In particular, you can't * use decorators like {@link ListOrderedMap} on it, which silently assume that these * contracts are fulfilled.
