From 0c55dc92a3bf889c67fac1ca855e6e33e1994904 Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Mon, 9 Oct 2023 09:44:29 +0200 Subject: Update copyright --- vespajlib/src/main/java/com/yahoo/slime/Cursor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vespajlib/src/main/java/com/yahoo/slime/Cursor.java') diff --git a/vespajlib/src/main/java/com/yahoo/slime/Cursor.java b/vespajlib/src/main/java/com/yahoo/slime/Cursor.java index e6493a2ba4c..a80e5e65cce 100644 --- a/vespajlib/src/main/java/com/yahoo/slime/Cursor.java +++ b/vespajlib/src/main/java/com/yahoo/slime/Cursor.java @@ -1,4 +1,4 @@ -// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.slime; /** -- cgit v1.2.3 From 8df0e70632e4668d5c7ca5e1bc3ed416507d0603 Mon Sep 17 00:00:00 2001 From: Harald Musum Date: Thu, 12 Oct 2023 09:53:33 +0200 Subject: Fix some typos --- vespajlib/src/main/java/com/yahoo/slime/Cursor.java | 12 ++++++------ vespajlib/src/main/java/com/yahoo/slime/Inspector.java | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'vespajlib/src/main/java/com/yahoo/slime/Cursor.java') 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 -- cgit v1.2.3