Skip to content

Commit c0a4354

Browse files
committed
Fix typos in changelog and release notes
1 parent da1108b commit c0a4354

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1616

1717
### Changed
1818

19-
- Improve efficiency of the default date/time parsing
19+
- Improved the efficiency of the default date/time parsing
2020
methods. [#876](https://github.com/handsontable/hyperformula/issues/876)
21-
- Improve efficiency of the operations on the dependency
21+
- Improved the efficiency of the operations on the dependency
2222
graph. [#876](https://github.com/handsontable/hyperformula/issues/876)
2323

2424
### Fixed

docs/guide/release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ HyperFormula adheres to
1717

1818
### Changed
1919

20-
- Improve efficiency of the default date/time parsing
20+
- Improved the efficiency of the default date/time parsing
2121
methods. [#876](https://github.com/handsontable/hyperformula/issues/876)
22-
- Improve efficiency of the operations on the dependency
22+
- Improved the efficiency of the operations on the dependency
2323
graph. [#876](https://github.com/handsontable/hyperformula/issues/876)
2424

2525
### Fixed

src/interpreter/InterpreterValue.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
import {CellError} from '../Cell'
77
import {SimpleRangeValue} from '../SimpleRangeValue'
88

9+
/**
10+
* A symbol representing an empty cell value.
11+
*/
912
export const EmptyValue = Symbol('Empty value')
13+
1014
export type EmptyValueType = typeof EmptyValue
1115
export type InternalNoErrorScalarValue = RichNumber | RawNoErrorScalarValue
1216
export type InternalScalarValue = RichNumber | RawScalarValue

0 commit comments

Comments
 (0)