This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-swift.git
commit ebb51b07f6a60892694bd5b8b211cd47782bfbbf Author: Josh Soref <[email protected]> AuthorDate: Tue Nov 28 19:22:11 2023 -0500 GH-38948: [Swift] Fix spelling (#38949) ### Rationale for this change ### What changes are included in this PR? Spelling fixes to swift/ ### Are these changes tested? ### Are there any user-facing changes? * Closes: #38948 Authored-by: Josh Soref <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]> --- Arrow/Sources/Arrow/Schema_generated.swift | 2 +- Arrow/Tests/ArrowTests/IPCTests.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Arrow/Sources/Arrow/Schema_generated.swift b/Arrow/Sources/Arrow/Schema_generated.swift index 990d9c3..c6fd6bf 100644 --- a/Arrow/Sources/Arrow/Schema_generated.swift +++ b/Arrow/Sources/Arrow/Schema_generated.swift @@ -1023,7 +1023,7 @@ public struct org_apache_arrow_flatbuf_Time: FlatBufferObject, Verifiable { /// no indication of how to map this information to a physical point in time. /// Naive date-times must be handled with care because of this missing /// information, and also because daylight saving time (DST) may make -/// some values ambiguous or non-existent. A naive date-time may be +/// some values ambiguous or nonexistent. A naive date-time may be /// stored as a struct with Date and Time fields. However, it may also be /// encoded into a Timestamp column with an empty timezone. The timestamp /// values should be computed "as if" the timezone of the date-time values diff --git a/Arrow/Tests/ArrowTests/IPCTests.swift b/Arrow/Tests/ArrowTests/IPCTests.swift index 4ea252b..59cad94 100644 --- a/Arrow/Tests/ArrowTests/IPCTests.swift +++ b/Arrow/Tests/ArrowTests/IPCTests.swift @@ -295,7 +295,7 @@ final class IPCFileReaderTests: XCTestCase { } } - func testBinaryInMemroyToFromStream() throws { + func testBinaryInMemoryToFromStream() throws { let dataset = try makeBinaryDataset() let writerInfo = ArrowWriter.Info(.recordbatch, schema: dataset.0, batches: [dataset.1]) let arrowWriter = ArrowWriter() @@ -324,7 +324,7 @@ final class IPCFileReaderTests: XCTestCase { } } - func testTimeInMemroyToFromStream() throws { + func testTimeInMemoryToFromStream() throws { let dataset = try makeTimeDataset() let writerInfo = ArrowWriter.Info(.recordbatch, schema: dataset.0, batches: [dataset.1]) let arrowWriter = ArrowWriter()
