aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-10-12 09:53:33 +0200
committerHarald Musum <musum@yahooinc.com>2023-10-12 09:53:33 +0200
commit8df0e70632e4668d5c7ca5e1bc3ed416507d0603 (patch)
tree2af8fbf660cce2cf8e6bb71767a323d5dc2976a9 /vespajlib/src
parent0f14059f373b486987f82b1d161ff89b01f03204 (diff)
Fix some typos
Diffstat (limited to 'vespajlib/src')
-rw-r--r--vespajlib/src/main/java/com/yahoo/slime/Cursor.java12
-rw-r--r--vespajlib/src/main/java/com/yahoo/slime/Inspector.java4
2 files changed, 8 insertions, 8 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/slime/Cursor.java b/vespajlib/src/main/java/com/yahoo/slime/Cursor.java
index a80e5e65cce..60eeb1e2218 100644
--- a/vespajlib/src/main/java/com/yahoo/slime/Cursor.java
+++ b/vespajlib/src/main/java/com/yahoo/slime/Cursor.java
@@ -94,7 +94,7 @@ public interface Cursor extends Inspector {
/**
* Appends an array entry containing a new value of ARRAY type.
- * Returns a valid Cursor (thay may again be used for adding new
+ * Returns a valid Cursor (that may again be used for adding new
* sub-array entries) referencing the new entry value if
* successful; otherwise returns an invalid Cursor.
*
@@ -104,7 +104,7 @@ public interface Cursor extends Inspector {
/**
* Appends an array entry containing a new value of OBJECT type.
- * Returns a valid Cursor (thay may again be used for setting
+ * Returns a valid Cursor (that may again be used for setting
* sub-fields inside the new object) referencing the new entry
* value if successful; otherwise returns an invalid Cursor.
*
@@ -190,7 +190,7 @@ public interface Cursor extends Inspector {
/**
* Sets a field (identified with a symbol id) to contain a new
- * value of ARRAY type. Returns a valid Cursor (thay may again be
+ * value of ARRAY type. Returns a valid Cursor (that may again be
* used for adding new array entries) referencing the new field
* value if successful; otherwise returns an invalid Cursor.
*
@@ -201,7 +201,7 @@ public interface Cursor extends Inspector {
/**
* Sets a field (identified with a symbol id) to contain a new
- * value of OBJECT type. Returns a valid Cursor (thay may again
+ * value of OBJECT type. Returns a valid Cursor (that may again
* be used for setting sub-fields inside the new object)
* referencing the new field value if successful; otherwise
* returns an invalid Cursor.
@@ -289,7 +289,7 @@ public interface Cursor extends Inspector {
/**
* Sets a field (identified with a symbol name) to contain a new
- * value of ARRAY type. Returns a valid Cursor (thay may again be
+ * value of ARRAY type. Returns a valid Cursor (that may again be
* used for adding new array entries) referencing the new field
* value if successful; otherwise returns an invalid Cursor.
*
@@ -300,7 +300,7 @@ public interface Cursor extends Inspector {
/**
* Sets a field (identified with a symbol name) to contain a new
- * value of OBJECT type. Returns a valid Cursor (thay may again
+ * value of OBJECT type. Returns a valid Cursor (that may again
* be used for setting sub-fields inside the new object)
* referencing the new field value if successful; otherwise
* returns an invalid Cursor.
diff --git a/vespajlib/src/main/java/com/yahoo/slime/Inspector.java b/vespajlib/src/main/java/com/yahoo/slime/Inspector.java
index bccc8d85223..3d56fc721a2 100644
--- a/vespajlib/src/main/java/com/yahoo/slime/Inspector.java
+++ b/vespajlib/src/main/java/com/yahoo/slime/Inspector.java
@@ -115,7 +115,7 @@ public interface Inspector {
Inspector entry(int idx);
/**
- * Access an field in an object by symbol id.
+ * Access a field in an object by symbol id.
*
* If the current Inspector doesn't connect to an object value, or
* the object value does not contain a field with the given symbol
@@ -126,7 +126,7 @@ public interface Inspector {
Inspector field(int sym);
/**
- * Access an field in an object by symbol name.
+ * Access a field in an object by symbol name.
*
* If the current Inspector doesn't connect to an object value, or
* the object value does not contain a field with the given symbol