diff options
Diffstat (limited to 'src/documentation/content/xdocs/spreadsheet')
-rw-r--r-- | src/documentation/content/xdocs/spreadsheet/eval-devguide.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/documentation/content/xdocs/spreadsheet/eval-devguide.xml b/src/documentation/content/xdocs/spreadsheet/eval-devguide.xml index f7c17650bd..99eecff4e0 100644 --- a/src/documentation/content/xdocs/spreadsheet/eval-devguide.xml +++ b/src/documentation/content/xdocs/spreadsheet/eval-devguide.xml @@ -88,11 +88,11 @@ <p> As of Feb 2012, POI supports about 140 built-in functions, see <link href="#appendixA">Appendix A</link> for the full list. - You can programmatically list supported / unsuported functions using trhe following helper methods: + You can programmatically list supported / unsuported functions using the following helper methods: </p> <source> // list of functions that POI can evaluate - Collection<String> suportedFuncs = WorkbookEvaluator.getSupportedFunctionNames(); + Collection<String> supportedFuncs = WorkbookEvaluator.getSupportedFunctionNames(); // list of functions that are not supported by POI Collection<String> unsupportedFuncs = WorkbookEvaluator.getNotSupportedFunctionNames(); @@ -366,6 +366,7 @@ VAR VARP VLOOKUP + WEEKDAY WORKDAY YEAR YEARFRAC |