Skip to content

Commit

Permalink
Docs: Fixing a getCellValueType() typo (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuba Jakub committed Nov 8, 2021
1 parent b9b82b7 commit 40b9578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HyperFormula.ts
Expand Up @@ -3209,10 +3209,10 @@ export class HyperFormula implements TypedEmitter {
* ]);
*
* // should return 'NUMBER_PERCENT', cell value type of provided coordinates is a number with a format inference percent.
* const cellType = hfInstance.getCellValueType({ sheet: 0, col: 0, row: 0 });
* const cellType = hfInstance.getCellValueDetailedType({ sheet: 0, col: 0, row: 0 });
*
* // should return 'NUMBER_CURRENCY', cell value type of provided coordinates is a number with a format inference currency.
* const cellType = hfInstance.getCellValueType({ sheet: 0, col: 1, row: 0 });
* const cellType = hfInstance.getCellValueDetailedType({ sheet: 0, col: 1, row: 0 });
* ```
*
* @category Cells
Expand Down

0 comments on commit 40b9578

Please sign in to comment.