fix typos in README

Change-Id: I4feb620e345c4707615d1c93978a2643707646ea
(cherry picked from commit 00cf6d47c83abff09e58bf60d75dafa2590d139b)
diff --git a/README.md b/README.md
index 9dd392b..9ef5da9 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@
       { from: `./conf/app/style.config.${brand}.js`, to: `style.config.js` },
       // add your file here
       { from: `./conf/app/customconfig.local.js`, to: `customconfig.js`}
-    ]),
+    ])
 ```
 
 `webpack.conf.js` will be used in a local development environment, such as when running `npm start`
@@ -66,9 +66,9 @@
 Provides easy access to model ngResources provided by an XOS service. Can be used as follows:
 
 ```typescript
-import {Subscription} from 'rxjs/Subscription;
+import {Subscription} from 'rxjs/Subscription';
 export class ExampleComponent {
-    static $inject = ['XosModelStore];
+    static $inject = ['XosModelStore'];
     public resource;
     private modelSubscription : Subscription;
     constructor(
@@ -102,3 +102,6 @@
 #### XosSidePanel
 Makes the injection of a custom side panel somewhat easier (no need to specify a target)
 
+#### XosConfirm
+Allows for the creation of confirmation modal dialogs to confirm whether or not to execute a selected action.
+