From commons-dev-return-43362-apmail-jakarta-commons-dev-archive=jakarta.apache.org@jakarta.apache.org Tue Jan 06 22:19:34 2004 Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 21897 invoked from network); 6 Jan 2004 22:19:34 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 6 Jan 2004 22:19:34 -0000 Received: (qmail 7829 invoked by uid 500); 6 Jan 2004 22:19:03 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 7757 invoked by uid 500); 6 Jan 2004 22:19:03 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 7701 invoked by uid 500); 6 Jan 2004 22:19:02 -0000 Received: (qmail 7683 invoked from network); 6 Jan 2004 22:19:02 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 6 Jan 2004 22:19:02 -0000 Received: (qmail 21658 invoked by uid 1529); 6 Jan 2004 22:19:14 -0000 Date: 6 Jan 2004 22:19:14 -0000 Message-ID: <20040106221914.21657.qmail@minotaur.apache.org> From: scolebourne@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/collections/xdocs userguide.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N scolebourne 2004/01/06 14:19:14 Modified: collections/xdocs userguide.xml Log: Fix typo in example code Revision Changes Path 1.2 +1 -1 jakarta-commons/collections/xdocs/userguide.xml Index: userguide.xml =================================================================== RCS file: /home/cvs/jakarta-commons/collections/xdocs/userguide.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- userguide.xml 6 Jan 2004 00:44:20 -0000 1.1 +++ userguide.xml 6 Jan 2004 22:19:14 -0000 1.2 @@ -83,7 +83,7 @@ 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 --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org