summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java
diff options
context:
space:
mode:
authorSebastian <sebastian@topobyte.de>2017-02-10 15:53:30 +0100
committerClinton Gormley <clint@traveljury.com>2017-02-10 15:53:30 +0100
commit976da87e8f5867b1c0b2bd0a98620d8f06cf922e (patch)
tree4e04cd67978ed572dbfda9844fa5096cc652003d /core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java
parenta6158398dd301b8a424509996ce7c87624ff8f30 (diff)
Fix some Javadoc typos (#23111)
Diffstat (limited to 'core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java')
-rw-r--r--core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java b/core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java
index a565f1a325..37ecc579e3 100644
--- a/core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java
+++ b/core/src/main/java/org/elasticsearch/common/xcontent/NamedXContentRegistry.java
@@ -42,9 +42,9 @@ public class NamedXContentRegistry {
/**
* The empty {@link NamedXContentRegistry} for use when you are sure that you aren't going to call
* {@link XContentParser#namedObject(Class, String, Object)}. Be *very* careful with this singleton because a parser using it will fail
- * every call to {@linkplain XContentParser#namedObject(Class, String, Object)}. Every non-test usage really should be checked thorowly
- * and marked with a comment about how it was checked. That way anyone that sees code that uses it knows that it is potentially
- * dangerous.
+ * every call to {@linkplain XContentParser#namedObject(Class, String, Object)}. Every non-test usage really should be checked
+ * thoroughly and marked with a comment about how it was checked. That way anyone that sees code that uses it knows that it is
+ * potentially dangerous.
*/
public static final NamedXContentRegistry EMPTY = new NamedXContentRegistry(emptyList());