Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-38952: [Format] Fix spelling #38953

Merged
merged 2 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion format/Schema.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ table Time {
/// 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
Expand Down
12 changes: 6 additions & 6 deletions format/adbc.h
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ struct ADBC_EXPORT AdbcError {
/// Must be kept alive as long as any connections exist.
struct ADBC_EXPORT AdbcDatabase {
/// \brief Opaque implementation-defined state.
/// This field is NULLPTR iff the connection is unintialized/freed.
/// This field is NULLPTR iff the connection is uninitialized/freed.
void* private_data;
/// \brief The associated driver (used by the driver manager to help
/// track state).
Expand All @@ -498,7 +498,7 @@ struct ADBC_EXPORT AdbcDatabase {
/// serialize accesses to a connection.
struct ADBC_EXPORT AdbcConnection {
/// \brief Opaque implementation-defined state.
/// This field is NULLPTR iff the connection is unintialized/freed.
/// This field is NULLPTR iff the connection is uninitialized/freed.
void* private_data;
/// \brief The associated driver (used by the driver manager to help
/// track state).
Expand Down Expand Up @@ -536,7 +536,7 @@ struct ADBC_EXPORT AdbcConnection {
/// serialize accesses to a statement.
struct ADBC_EXPORT AdbcStatement {
/// \brief Opaque implementation-defined state.
/// This field is NULLPTR iff the connection is unintialized/freed.
/// This field is NULLPTR iff the connection is uninitialized/freed.
void* private_data;

/// \brief The associated driver (used by the driver manager to help
Expand Down Expand Up @@ -575,7 +575,7 @@ struct AdbcPartitions {
const size_t* partition_lengths;

/// \brief Opaque implementation-defined state.
/// This field is NULLPTR iff the connection is unintialized/freed.
/// This field is NULLPTR iff the connection is uninitialized/freed.
void* private_data;

/// \brief Release the contained partitions.
Expand Down Expand Up @@ -603,11 +603,11 @@ struct AdbcPartitions {
/// worrying about multiple definitions of the same symbol.
struct ADBC_EXPORT AdbcDriver {
/// \brief Opaque driver-defined state.
/// This field is NULL if the driver is unintialized/freed (but
/// This field is NULL if the driver is uninitialized/freed (but
/// it need not have a value even if the driver is initialized).
void* private_data;
/// \brief Opaque driver manager-defined state.
/// This field is NULL if the driver is unintialized/freed (but
/// This field is NULL if the driver is uninitialized/freed (but
/// it need not have a value even if the driver is initialized).
void* private_manager;

Expand Down
Loading