Fix typo "bodyToUpser" -> "bodyToUpsert"

This commit is contained in:
Brian Broll 2021-12-01 13:20:34 -06:00 committed by GitHub
parent 7008de157e
commit a7095737ed
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 }
*
* // Auto-upsert based on purpose
* { action: 'upsert', body: bodyToUpser }
* { action: 'upsert', body: bodyToUpsert }
* ]
*/
onBatchModify = (diffs, saveImmediately) => {
@ -374,4 +374,4 @@ export default class Editor extends Component {
}
}
}