summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Josh Horwich <jhorwich@google.com> 2016-09-16 16:10:45 -0700
committer Josh Horwich <jhorwich@google.com> 2016-09-16 16:12:16 -0700
commit8960d0a71204d7c8fc854db7356ea616fa861614 (patch)
tree633f325a44f20f5857537b5ed0dd5b003355c4f2
parent5195e8288dd16c8527815a61636e0fe490f6b32b (diff)
Docs: Fix manifest example for ARC
Simply add "android:" qualifier to required attribute. Bug: 31554344 Test: None Change-Id: I13ef9c8614d76bd99f9d7b69d3ea8319843e979a
-rw-r--r--docs/html/topic/arc/index.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/topic/arc/index.jd b/docs/html/topic/arc/index.jd
index d46fbc89ac59..a025459226aa 100644
--- a/docs/html/topic/arc/index.jd
+++ b/docs/html/topic/arc/index.jd
@@ -51,7 +51,7 @@ review your mouse and keyboard interactions.
&lt;!-- Some Chromebooks don't support touch. Although not essential,
it's a good idea to explicitly include this declaration. --&gt;
&lt;uses-feature android:name="android.hardware.touchscreen"
- required="false" /&gt;
+ android:required="false" /&gt;
&lt;/manifest&gt;
</pre>