Skip to content

Commit d1446e3

Browse files
authored
docs: fix typos in comments (#6276)
1 parent 433ce7d commit d1446e3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/preact/column-pinning-sticky/src/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ html {
1414
}
1515

1616
table {
17-
/* box-shadow and borders will not work with positon: sticky otherwise */
17+
/* box-shadow and borders will not work with position: sticky otherwise */
1818
border-collapse: collapse;
1919
border-spacing: 0;
2020
}

examples/react/column-pinning-sticky/src/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ html {
1414
}
1515

1616
table {
17-
/* box-shadow and borders will not work with positon: sticky otherwise */
17+
/* box-shadow and borders will not work with position: sticky otherwise */
1818
border-collapse: collapse;
1919
border-spacing: 0;
2020
}

examples/vanilla/pagination/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const renderTable = (table: Table<typeof _features, Person>) => {
188188
paginationPageElement.appendChild(paginationPageInput)
189189
paginationElement.appendChild(paginationPageElement)
190190

191-
// Render pagiantion page size
191+
// Render pagination page size
192192
const paginationPageSizeSelect = document.createElement('select')
193193
paginationPageSizeSelect.value = String(table.store.state.pagination.pageSize)
194194
paginationPageSizeSelect.onchange = (e) => {

0 commit comments

Comments
 (0)