diff --git a/docs/html/guide/topics/resources/drawable-resource.jd b/docs/html/guide/topics/resources/drawable-resource.jd
index 129462e5cb312..d9f619f2b7489 100644
--- a/docs/html/guide/topics/resources/drawable-resource.jd
+++ b/docs/html/guide/topics/resources/drawable-resource.jd
@@ -474,7 +474,7 @@ In XML: @[package:]drawable/filename
android:right="dimension"
android:bottom="dimension"
android:left="dimension" />
-</selector>
+</layer-list>
@@ -906,7 +906,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" >
android:right="dimension"
android:bottom="dimension"
android:left="dimension" />
-</selector>
+</transition>
@@ -926,8 +926,8 @@ xmlns:android="http://schemas.android.com/apk/res/android" >
<item><selector> element. Accepts child {@code <bitmap>}
+ <transition> element. Accepts child {@code <bitmap>}
elements.
attributes:
This layout XML applies the drawable to a View:
@@ -1226,11 +1226,11 @@ the right edge, a right gravity clips the left edge, and neither clips both edgeres/drawable/clip.xml:
<?xml version="1.0" encoding="utf-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
+<clip xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/android"
android:clipOrientation="horizontal"
android:gravity="left" />
-</shape>
+</clip>
The following layout XML applies the clip drawable to a View: