Skip to content

Commit

Permalink
fix(docs): fix variable name in boot script docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vomaksh authored and dhmlau committed May 27, 2020
1 parent 34303bc commit ff2dde5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/site/migration/boot-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export class CreateSampleObserver implements LifeCycleObserver {

const sample = {title: 'a todo sample', desc: 'Something to do.'};
// Create the sample by calling TodoRepo.create()
const result = await TodoRepo.create(sample);
const result = await todoRepo.create(sample);
console.log('Sample created as ', result);
}

Expand Down

0 comments on commit ff2dde5

Please sign in to comment.