Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed Oct 2, 2023
1 parent ac85512 commit 2a7a3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/data-editor/copy-paste.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export function decodeHTML(html: string): CopyBuffer | undefined {
} else {
let textContent = clone.textContent ?? "";
if (isAppleNumbers) {
// replace and newline not preceded by a newline
// replace any newline not preceded by a newline
textContent = textContent.replace(/(?<!\n)\n/g, "");
}

Expand Down

0 comments on commit 2a7a3c7

Please sign in to comment.