From 1549d5cc129dbdd562c14eb895419f0476906331 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Tue, 6 Jan 2004 22:19:14 +0000 Subject: [PATCH] Fix typo in example code git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131535 13f79535-47bb-0310-9956-ffa450edef68 --- xdocs/userguide.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xdocs/userguide.xml b/xdocs/userguide.xml index 31a902546..c78d1d95e 100644 --- a/xdocs/userguide.xml +++ b/xdocs/userguide.xml @@ -83,7 +83,7 @@ These represent maps where the the key can lookup the value and the value can lo BidiMap bidi = new TreeBidiMap(); bidi.put("SIX", "6"); -bidi.get("SIX"); // returns "six" +bidi.get("SIX"); // returns "6" bidi.getKey("6"); // returns "SIX" bidi.removeValue("6"); // removes the mapping BidiMap inverse = bidi.inverseBidiMap(); // returns a map with keys and values swapped