Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed May 31, 2024
1 parent 43a83a2 commit 92a6c24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arrow-cast/src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

//! Functions for printing array values as human-readable strings.
//!
//! This is often used for debugging or logging purposes.
//! This is often used for debugging or logging purposes.
//!
//! See the [`pretty`] crate for additional functions for
//! record batch pretty printing.
Expand Down
2 changes: 1 addition & 1 deletion arrow-cast/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

//! Functions fcr converting from one data type to another in [Apache Arrow](https://docs.rs/arrow)
//! Functions for converting from one data type to another in [Apache Arrow](https://docs.rs/arrow)
pub mod cast;
pub use cast::*;
pub mod display;
Expand Down
4 changes: 2 additions & 2 deletions arrow-cast/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,9 @@ fn string_to_time(s: &str) -> Option<NaiveTime> {
)
}

/// Specialized parsing implementations used by csv and json reader
/// Specialized parsing implementations to convert strings to Arrow types.
///
/// You can also use this to parse strings to Arrow types.
/// This is used by csv and json reader and can be used directly as well.
///
/// # Example
///
Expand Down

0 comments on commit 92a6c24

Please sign in to comment.