Skip to content

Commit

Permalink
docs(rust): Fix typo in comment (pola-rs#14997)
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad authored Mar 12, 2024
1 parent 8c2eca9 commit c5b53ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/scan/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ impl<'a> LazyCsvReader<'a> {
self
}

/// Reduce memory usage in expensive of performance
/// Reduce memory usage at the expense of performance
#[must_use]
pub fn low_memory(mut self, toggle: bool) -> Self {
self.low_memory = toggle;
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/scan/ndjson.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl LazyJsonLineReader {
self
}

/// Reduce memory usage in expensive of performance
/// Reduce memory usage at the expense of performance
#[must_use]
pub fn low_memory(mut self, toggle: bool) -> Self {
self.low_memory = toggle;
Expand Down

0 comments on commit c5b53ab

Please sign in to comment.