typos in javdocs

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893452 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-09-19 20:04:01 +00:00
parent d6806c3365
commit 79bf9ece2e
3 changed files with 2 additions and 3 deletions

View File

@ -1179,7 +1179,7 @@ public class XWPFTable implements IBodyElement, ISDTContents {
/**
* Get the width type from the width value
* @param ctWidth CTTblWidth to evalute
* @param ctWidth CTTblWidth to evaluate
* @return The table width type
* @since 4.0.0
*/

View File

@ -79,7 +79,7 @@ public final class WorkbookEvaluator {
// special logger for formula evaluation output (because of possibly very large output)
private final Logger EVAL_LOG = LogManager.getLogger("POI.FormulaEval");
// current indent level for evalution; negative value for no output
// current indent level for evaluation; negative value for no output
private int dbgEvaluationOutputIndent = -1;
/**

View File

@ -23,7 +23,6 @@ import org.apache.poi.ss.formula.OperationEvaluationContext;
import org.apache.poi.ss.formula.eval.AreaEval;
import org.apache.poi.ss.formula.eval.ErrorEval;
import org.apache.poi.ss.formula.eval.EvaluationException;
import org.apache.poi.ss.formula.eval.NumberEval;
import org.apache.poi.ss.formula.eval.RefEval;
import org.apache.poi.ss.formula.eval.ValueEval;
import org.apache.poi.ss.formula.functions.CountUtils.I_MatchPredicate;