summaryrefslogtreecommitdiffstats
path: root/xml
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-12-11 17:07:40 -0800
committerElliott Hughes <enh@google.com>2013-12-11 17:07:40 -0800
commitc9b4e40b19fdf79c22d4774600f704b473f47067 (patch)
treeb4672a9a61ce8f163c81642d2f77226ea84f30ac /xml
parente0eef9990f62bee2dfb6d4e541bdf2ffb932064f (diff)
downloadlibcore-c9b4e40b19fdf79c22d4774600f704b473f47067.zip
libcore-c9b4e40b19fdf79c22d4774600f704b473f47067.tar.gz
libcore-c9b4e40b19fdf79c22d4774600f704b473f47067.tar.bz2
Fix a javadoc typo.
Bug: https://code.google.com/p/android/issues/detail?id=62919 Change-Id: Iadb85c25ec7e07ee245b009f5fb848c8228924a1
Diffstat (limited to 'xml')
-rw-r--r--xml/src/main/java/org/xmlpull/v1/XmlPullParser.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/xml/src/main/java/org/xmlpull/v1/XmlPullParser.java b/xml/src/main/java/org/xmlpull/v1/XmlPullParser.java
index e042eb8..0958bbf 100644
--- a/xml/src/main/java/org/xmlpull/v1/XmlPullParser.java
+++ b/xml/src/main/java/org/xmlpull/v1/XmlPullParser.java
@@ -913,7 +913,7 @@ public interface XmlPullParser {
throws XmlPullParserException;
/**
- * Get next parsing event - element content wil be coalesced and only one
+ * Get next parsing event - element content will be coalesced and only one
* TEXT event must be returned for whole element content
* (comments and processing instructions will be ignored and entity references
* must be expanded or exception mus be thrown if entity reference can not be expanded).
@@ -1052,7 +1052,7 @@ public interface XmlPullParser {
* If current event is START_TAG then if next element is TEXT then element content is returned
* or if next event is END_TAG then empty string is returned, otherwise exception is thrown.
* After calling this function successfully parser will be positioned on END_TAG.
- *
+ *
* <p>The motivation for this function is to allow to parse consistently both
* empty elements and elements that has non empty content, for example for input: <ol>
* <li>&lt;tag&gt;foo&lt;/tag&gt;