]> source.dussan.org Git - poi.git/commitdiff
fixed typo and formatting in class javadoc
authorJosh Micich <josh@apache.org>
Fri, 11 Apr 2008 19:36:37 +0000 (19:36 +0000)
committerJosh Micich <josh@apache.org>
Fri, 11 Apr 2008 19:36:37 +0000 (19:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@647278 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/formula/functions/Hlookup.java
src/java/org/apache/poi/hssf/record/formula/functions/Vlookup.java

index 40ed1da4903ab12507c2a8e69ffe52522a20dedb..d493cd53321f43c0da40d5c94fc2492e61a1074c 100644 (file)
@@ -25,15 +25,15 @@ import org.apache.poi.hssf.record.formula.eval.OperandResolver;
 import org.apache.poi.hssf.record.formula.eval.ValueEval;
 import org.apache.poi.hssf.record.formula.functions.LookupUtils.ValueVector;
 /**
- * Implementation of the VLOOKUP() function.<p/>
+ * Implementation of the HLOOKUP() function.<p/>
  * 
- * HLOOKUP finds a column in a lookup table by the first row value and returns the value from another row.
+ * HLOOKUP finds a column in a lookup table by the first row value and returns the value from another row.<br/>
  * 
  * <b>Syntax</b>:<br/>
  * <b>HLOOKUP</b>(<b>lookup_value</b>, <b>table_array</b>, <b>row_index_num</b>, range_lookup)<p/>
  * 
  * <b>lookup_value</b>  The value to be found in the first column of the table array.<br/>
- * <b>table_array</> An area reference for the lookup data. <br/>
+ * <b>table_array</b> An area reference for the lookup data. <br/>
  * <b>row_index_num</b> a 1 based index specifying which row value of the lookup data will be returned.<br/>
  * <b>range_lookup</b> If TRUE (default), HLOOKUP finds the largest value less than or equal to 
  * the lookup_value.  If FALSE, only exact matches will be considered<br/>   
index 7d27491df1590a1089c13ec2750d41abad654fb5..bd158b897c818e03a33c0a6227c5962a5f04c732 100644 (file)
@@ -27,13 +27,13 @@ import org.apache.poi.hssf.record.formula.functions.LookupUtils.ValueVector;
 /**
  * Implementation of the VLOOKUP() function.<p/>
  * 
- * VLOOKUP finds a row in a lookup table by the first column value and returns the value from another column.
+ * VLOOKUP finds a row in a lookup table by the first column value and returns the value from another column.<br/>
  * 
  * <b>Syntax</b>:<br/>
  * <b>VLOOKUP</b>(<b>lookup_value</b>, <b>table_array</b>, <b>col_index_num</b>, range_lookup)<p/>
  * 
  * <b>lookup_value</b>  The value to be found in the first column of the table array.<br/>
- * <b>table_array</> An area reference for the lookup data. <br/>
+ * <b>table_array</b> An area reference for the lookup data. <br/>
  * <b>col_index_num</b> a 1 based index specifying which column value of the lookup data will be returned.<br/>
  * <b>range_lookup</b> If TRUE (default), VLOOKUP finds the largest value less than or equal to 
  * the lookup_value.  If FALSE, only exact matches will be considered<br/>