Skip to content

Commit 42bf966

Browse files
committed
Fix a broken link in the docs
1 parent c7ec7e4 commit 42bf966

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

docs/guide/basic-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ consists of a sheet ID, column ID, and row ID, like this:
228228

229229
Alternatively, you can work with the **A1 notation** known from
230230
spreadsheets like Excel or Google Sheets. The API provides the helper
231-
function [`simpleCellAddressFromString`](../api/globals.md#simplecelladdressfromstring) which you can use to retrieve
231+
function [`simpleCellAddressFromString`](../api/classes/hyperformula.md#simplecelladdressfromstring) which you can use to retrieve
232232
the [`SimpleCellAddress`](../api/interfaces/simplecelladdress) .
233233
:::
234234

src/HyperFormula.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,9 @@ export class HyperFormula implements TypedEmitter {
649649
return FunctionRegistry.getPlugins()
650650
}
651651

652+
/**
653+
* @internal
654+
*/
652655
private static buildFromEngineState(engine: EngineState): HyperFormula {
653656
return new HyperFormula(
654657
engine.config,
@@ -4527,12 +4530,22 @@ export class HyperFormula implements TypedEmitter {
45274530
objectDestroy(this)
45284531
}
45294532

4533+
/**
4534+
* Throws an error if evaluation is suspended.
4535+
*
4536+
* @internal
4537+
*/
45304538
private ensureEvaluationIsNotSuspended() {
45314539
if (this._evaluationSuspended) {
45324540
throw new EvaluationSuspendedError()
45334541
}
45344542
}
45354543

4544+
/**
4545+
* Parses a formula string and extracts its AST and dependencies.
4546+
*
4547+
* @internal
4548+
*/
45364549
private extractTemporaryFormula(formulaString: string, sheetId: number = 1): { ast?: Ast, address: SimpleCellAddress, dependencies: RelativeDependency[] } {
45374550
const parsedCellContent = this._cellContentParser.parse(formulaString)
45384551
const address = {sheet: sheetId, col: 0, row: 0}

0 commit comments

Comments
 (0)