From d3d9263876bea027b2d2bbbce5772c4a969d198a Mon Sep 17 00:00:00 2001 From: Alvaro Viebrantz Date: Thu, 21 Mar 2024 13:35:43 -0400 Subject: [PATCH] fix: remove extra by/for on comments --- src/managedwriter/json_writer.ts | 2 +- src/managedwriter/writer.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/managedwriter/json_writer.ts b/src/managedwriter/json_writer.ts index 158f5da4..f187c26c 100644 --- a/src/managedwriter/json_writer.ts +++ b/src/managedwriter/json_writer.ts @@ -88,7 +88,7 @@ export class JSONWriter { } /** - * Update how missing values are interpreted by for the given stream. + * Update how missing values are interpreted for the given stream. * * @param {MissingValueInterpretation} defaultMissingValueInterpretation */ diff --git a/src/managedwriter/writer.ts b/src/managedwriter/writer.ts index 6bff874b..04939e07 100644 --- a/src/managedwriter/writer.ts +++ b/src/managedwriter/writer.ts @@ -40,8 +40,8 @@ export interface WriterOptions { protoDescriptor: IDescriptorProto; /** - * Controls how missing values are interpreted by for a given stream. - * `missingValueInterpretations` set for individual colums can override the default chosen + * Controls how missing values are interpreted for a given stream. + * `missingValueInterpretations` set for individual columns can override the default chosen * with this option. * * For example, if you want to write @@ -127,7 +127,7 @@ export class Writer { } /** - * Update how missing values are interpreted by for the given stream. + * Update how missing values are interpreted for the given stream. * * @param {MissingValueInterpretation} defaultMissingValueInterpretation */