diff --git a/src/HyperFormula.ts b/src/HyperFormula.ts index f490e40721..2504b1d35c 100644 --- a/src/HyperFormula.ts +++ b/src/HyperFormula.ts @@ -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