diff --git a/docs/image.html b/docs/image.html
index 2bf6fa51871..992de8204ad 100644
--- a/docs/image.html
+++ b/docs/image.html
@@ -5,7 +5,7 @@ images from local disk, such as the camera roll.
Example usage:
>
<Image
style={styles.icon}
- source={ix('myIcon')}
+ source={require('image!myIcon')}/>
<Image
style={styles.logo}
diff --git a/docs/touchablehighlight.html b/docs/touchablehighlight.html
index 65132ad5bec..6847980a9e9 100644
--- a/docs/touchablehighlight.html
+++ b/docs/touchablehighlight.html
@@ -8,7 +8,7 @@ backgroundColor of the wrapped view isn't explicitly set to an opaque color
<TouchableHighlight onPress={this._onPressButton}>
<Image
style={styles.button}
- source={ix('myButton')}
+ source={require('image!myButton')}/>
</View>);
diff --git a/docs/touchableopacity.html b/docs/touchableopacity.html
index 239da51b9cd..58190fe7c09 100644
--- a/docs/touchableopacity.html
+++ b/docs/touchableopacity.html
@@ -6,7 +6,7 @@ easy to add to an app without weird side-effects.