summaryrefslogtreecommitdiff
path: root/core/java/android/content/ClipData.java
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2019-02-18 15:58:30 -0800
committerXin Li <delphij@google.com>2019-02-18 15:58:30 -0800
commite2cfe31b48aa2f7f8a4574a6488d2ed5fa59627e (patch)
treeced32902e5280db0c8595b8ba0ce30f9afbb9a95 /core/java/android/content/ClipData.java
parentda75e38817e07fa9619c836267d06cae0780938a (diff)
parent7f997d4cfca99c17760b5533f2391fbbcc8bb273 (diff)
DO NOT MERGE - Merge PPRL.190205.001 into master
Bug: 124234733 Change-Id: If654c6ab27cf6c376598e02cd3253e0b68ed5395
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) {