From 2717216f734ec18158fc86198c217143e9aaf5e6 Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Wed, 25 Oct 2023 12:57:38 -0400 Subject: [PATCH] Update x-pack/plugin/esql/compute/ann/src/main/java/org/elasticsearch/compute/ann/Fixed.java Co-authored-by: Alexander Spies --- .../src/main/java/org/elasticsearch/compute/ann/Fixed.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/compute/ann/src/main/java/org/elasticsearch/compute/ann/Fixed.java b/x-pack/plugin/esql/compute/ann/src/main/java/org/elasticsearch/compute/ann/Fixed.java index aec145511fbe3..62703fa400ff7 100644 --- a/x-pack/plugin/esql/compute/ann/src/main/java/org/elasticsearch/compute/ann/Fixed.java +++ b/x-pack/plugin/esql/compute/ann/src/main/java/org/elasticsearch/compute/ann/Fixed.java @@ -27,11 +27,11 @@ boolean includeInToString() default true; /** - * Should the Evaluator's Factory build this per evaluator with a + * Should the Evaluator's factory build this per evaluator with a * {@code Function} or just take fixed implementation? * This is typically set to {@code true} to use the {@link Function} * to make "scratch" objects which have to be isolated in a single thread. - * This is typeically set to {@code false} when the parameter is simply + * This is typically set to {@code false} when the parameter is simply * immutable and can be shared. */ boolean build() default false;