Skip to content

Fix Typos in Documentation and Comments #5798

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

Merged
merged 2 commits into from
Jun 17, 2025
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 docs/reference/updating-mapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Conversion from a type to itself is omitted. Conversions that never succeed and
| date | text | convert to rfc3339 textual representation |
| ip | text | convert to IPv6 representation. For IPv4, convert to IPv4-mapped IPv6 address (`::ffff:1.2.3.4`) |
| bool | text | convert to "true" or false" |
| u64/i64/f64 | bool | convert 0/0.0 to false and 1/1.0 to true, otherise omit |
| u64/i64/f64 | bool | convert 0/0.0 to false and 1/1.0 to true, otherwise omit |
| text | bool | convert if "true" or "false" (lowercase), otherwise omit |
| text | ip | convert if valid IPv4 or IPv6, otherwise omit |
| text | f64 | convert if valid floating point number, otherwise omit |
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ mod tests {
#[test]
fn test_get_from_env() {
// SAFETY: this test may not be entirely sound if not run with nextest or --test-threads=1
// as this is only a test, and it would be extremly inconvenient to run it in a different
// as this is only a test, and it would be extremely inconvenient to run it in a different
// way, we are keeping it that way

const TEST_KEY: &str = "TEST_KEY";
Expand Down