From 74a793ca927b434bec32574a9b10d361ec7518b2 Mon Sep 17 00:00:00 2001 From: nixa <4dmitr@gmail.com> Date: Tue, 24 May 2016 18:17:33 +0300 Subject: [PATCH] fix(docs): fix typo --- docs/contents/articles/016-spinner/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contents/articles/016-spinner/index.md b/docs/contents/articles/016-spinner/index.md index df2253be..bb873cd8 100644 --- a/docs/contents/articles/016-spinner/index.md +++ b/docs/contents/articles/016-spinner/index.md @@ -22,7 +22,7 @@ Here we registering a loader (`this._imageLoader.load` just returns a `Promise`) BaThemePreloader.registerLoader(this._imageLoader.load(layoutPaths.images.root + 'blur-bg-mobile.jpg')); ``` -Then we starting all the registered promises and once they all are done - hiding the spinner. +Then we are starting all the registered promises and once they all are done - hiding the spinner. ```javascript BaThemePreloader.load().then((values) => { this._spinner.hide();