From ff2dde588119db49a889c27349182d51d9c2ae05 Mon Sep 17 00:00:00 2001 From: Akshay Mahajan <26306108+VOMAkSh@users.noreply.github.com> Date: Tue, 26 May 2020 15:32:45 +0530 Subject: [PATCH] fix(docs): fix variable name in boot script docs --- docs/site/migration/boot-scripts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/site/migration/boot-scripts.md b/docs/site/migration/boot-scripts.md index 7f2bff40e44c..1ccf7d7f5918 100644 --- a/docs/site/migration/boot-scripts.md +++ b/docs/site/migration/boot-scripts.md @@ -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); }