From edc51f76c4c84bcbff054ba52572dc545d46edbd Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Sun, 14 Jul 2019 22:45:09 +0800 Subject: [PATCH] style(docs-infra): fix indentation in `rx-library` example (#31553) PR Close #31553 --- aio/content/examples/rx-library/src/simple-creation.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/examples/rx-library/src/simple-creation.ts b/aio/content/examples/rx-library/src/simple-creation.ts index 9c576ffca0..ef83631dba 100644 --- a/aio/content/examples/rx-library/src/simple-creation.ts +++ b/aio/content/examples/rx-library/src/simple-creation.ts @@ -7,9 +7,9 @@ import { from } from 'rxjs'; const data = from(fetch('/api/endpoint')); // Subscribe to begin listening for async result data.subscribe({ - next(response) { console.log(response); }, - error(err) { console.error('Error: ' + err); }, - complete() { console.log('Completed'); } + next(response) { console.log(response); }, + error(err) { console.error('Error: ' + err); }, + complete() { console.log('Completed'); } }); // #enddocregion promise