Fix javadoc example

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@492378 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2007-01-04 01:31:24 +00:00
parent 183e837907
commit 0f2ba8cea3
1 changed files with 3 additions and 3 deletions

View File

@ -134,9 +134,9 @@ public class BooleanUtils {
* handling <code>null</code> by returning <code>true</code>.</p> * handling <code>null</code> by returning <code>true</code>.</p>
* *
* <pre> * <pre>
* BooleanUtils.isNotTrue(Boolean.TRUE) = true * BooleanUtils.isNotFalse(Boolean.TRUE) = true
* BooleanUtils.isNotTrue(Boolean.FALSE) = false * BooleanUtils.isNotFalse(Boolean.FALSE) = false
* BooleanUtils.isNotTrue(null) = true * BooleanUtils.isNotFalse(null) = true
* </pre> * </pre>
* *
* @param bool the boolean to check, null returns <code>true</code> * @param bool the boolean to check, null returns <code>true</code>