diff --git a/ionic/config/config.ts b/ionic/config/config.ts
index 83e9e18847..494f513193 100644
--- a/ionic/config/config.ts
+++ b/ionic/config/config.ts
@@ -13,7 +13,6 @@ import {isObject, isDefined, isFunction, isArray, extend} from '../util/util';
* Config lets you change multiple or a single value in an apps mode configuration. Things such as tab placement, icon changes, and view animations can be set here.
*
* ```ts
- * import {Config} from 'ionic/ionic';
* @App({
* template: ``
* config: {
@@ -29,12 +28,11 @@ import {isObject, isDefined, isFunction, isArray, extend} from '../util/util';
*
* Config can be overwritting at multiple levels, allowing deeper configuration. Taking the example from earlier, we can override any setting we want based on a platform.
* ```ts
- * import {Config} from 'ionic/ionic';
* @App({
* template: ``
* config: {
* 'tabbarPlacement': 'bottom',
- * platform: {
+ * platforms: {
* ios: {
* 'tabbarPlacement': 'top',
* }