diff --git a/docs/contents/articles/013-create-new-page/index.md b/docs/contents/articles/013-create-new-page/index.md
index 9fe10d7..104d016 100644
--- a/docs/contents/articles/013-create-new-page/index.md
+++ b/docs/contents/articles/013-create-new-page/index.md
@@ -9,7 +9,7 @@ template: article.jade
Blur admin uses [Angular UI router](https://github.com/angular-ui/ui-router) for navigation.
That means to create new page you need to basically configure `ui-router` state.
-We strongly recommend to follow pages structure in our application.
+We strongly recommend to follow pages structure in your application.
If it doesn't fit your needs please create a GitHub issue and tell us why. We would be glad to discuss.
Also we recommend to put pages to separate modules.
@@ -19,7 +19,7 @@ This will allow you to easily switch off some pages in the future if needed.
0) Let's assume we want to create a blank page with title 'My New Page'
-1) Create new folder to contain `myNewPage` inside of `src/app/pages`. Let's call it `myNewPage` as well.
+1) Let's Create a new directory to contain our new page inside of `src/app/pages`. Let's call this directory `myNewPage`.
2) Then let's create blank angular module to contain our page called 'myNewPage.module.js' inside of `src/app/pages/myNewPage`:
@@ -31,7 +31,7 @@ This will allow you to easily switch off some pages in the future if needed.
.config(routeConfig);
/** @ngInject */
- function routeConfig($stateProvider) {
+ function routeConfig() {
}
@@ -40,7 +40,7 @@ This will allow you to easily switch off some pages in the future if needed.
3) Then let's create empty html file called `my-new-page.html` inside of `src/app/pages/myNewPage`.
-4) Lastly let's create ui router state for this page. To do this we need to modify :
+4) Lastly let's create ui router state for this page. To do this we need to modify module.js file we created on step 2:
```javascript
(function () {
'use strict';
diff --git a/docs/contents/articles/051-sidebar/index.md b/docs/contents/articles/051-sidebar/index.md
index 65c749f..5a82b32 100644
--- a/docs/contents/articles/051-sidebar/index.md
+++ b/docs/contents/articles/051-sidebar/index.md
@@ -6,7 +6,7 @@ group: Components
template: article.jade
---
-Sidebar is used to provide convenient way of navigation in our application.
+Sidebar is used to provide convenient way of navigation in the application.
Application support only one sidebar per angular application.
That means sidebar is basically a singletone object.
Currently sidebar supports level 1 and 2 sub menus.
@@ -16,9 +16,8 @@ Sidebar can be created using `baSidebar` directive: