summaryrefslogtreecommitdiff
path: root/core/java/android/content/ClipData.java
diff options
context:
space:
mode:
authorkopriva <kopriva@google.com>2018-10-10 19:41:15 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-10-10 19:41:15 -0700
commitb0353c56e099a0a79bccc775bca590ecbb3b16e3 (patch)
tree485370a026c3fde44e712aea256b74e047b8532d /core/java/android/content/ClipData.java
parent1cdeeb5d9baf24e8dd1757f9dc29a630e302fd45 (diff)
parent003587b9a4e14f5e412ae898e7c00389a2dad2aa (diff)
docs: fixing errors found with lint checker am: 219f7dcb66
am: 003587b9a4 Change-Id: I056261f069ed679ed8a03bfc0791bfe59a405361
Diffstat (limited to 'core/java/android/content/ClipData.java')
-rw-r--r--core/java/android/content/ClipData.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/ClipData.java b/core/java/android/content/ClipData.java
index 089cf1098ffc..ed3d4557061e 100644
--- a/core/java/android/content/ClipData.java
+++ b/core/java/android/content/ClipData.java
@@ -224,7 +224,7 @@ public class ClipData implements Parcelable {
* Create an Item consisting of a single block of (possibly styled) text,
* with an alternative HTML formatted representation. You <em>must</em>
* supply a plain text representation in addition to HTML text; coercion
- * will not be done from HTML formated text into plain text.
+ * will not be done from HTML formatted text into plain text.
*/
public Item(CharSequence text, String htmlText) {
mText = text;
@@ -268,7 +268,7 @@ public class ClipData implements Parcelable {
* Create a complex Item, containing multiple representations of
* text, HTML text, Intent, and/or URI. If providing HTML text, you
* <em>must</em> supply a plain text representation as well; coercion
- * will not be done from HTML formated text into plain text.
+ * will not be done from HTML formatted text into plain text.
*/
public Item(CharSequence text, String htmlText, Intent intent, Uri uri) {
if (htmlText != null && text == null) {