Merge pull request #95 from brollb/patch-1

Fix typo "bodyToUpser" -> "bodyToUpsert"
This commit is contained in:
Rainer Simon 2021-12-02 07:52:31 +01:00 committed by GitHub
commit adacf07ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ export default class Editor extends Component {
* { action: 'upsert', previous: prevBody, updated: updatedBody } * { action: 'upsert', previous: prevBody, updated: updatedBody }
* *
* // Auto-upsert based on purpose * // Auto-upsert based on purpose
* { action: 'upsert', body: bodyToUpser } * { action: 'upsert', body: bodyToUpsert }
* ] * ]
*/ */
onBatchModify = (diffs, saveImmediately) => { onBatchModify = (diffs, saveImmediately) => {
@ -374,4 +374,4 @@ export default class Editor extends Component {
} }
} }