Skip to content

Commit b985f68

Browse files
committed
Fix todo format
1 parent c4d7dab commit b985f68

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/formula.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function convertPointToCellRef(point: Point): CellRef {
130130
return {
131131
row: point.row + 1,
132132
col: point.column + 1,
133-
/** @todo fill once we support multiple sheets */
133+
// TODO: fill once we support multiple sheets
134134
sheet: "Sheet1",
135135
};
136136
}

src/reducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const reducer = createReducer(INITIAL_STATE, (builder) => {
101101
}
102102
return {
103103
...state,
104-
/** @todo move data to model */
104+
// TODO: move data to model
105105
data: Matrix.set(active, cellData, state.data),
106106
model: updateCellValue(state.model, active, cellData),
107107
lastChanged: active,

0 commit comments

Comments
 (0)