diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d10b43b..7a5557d42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,7 +40,7 @@ Users can manually verify the signatures by downloading the zipsign public key a * `luau`: replaced sanitise-file-name with more popular sanitize-filename crate https://github.com/jqnatividad/qsv/commit/8927cb70bc92e9e1360547e96d1ac10e6037e9e3 * `cat`: minor optimization by preallocating with capacity https://github.com/jqnatividad/qsv/commit/c13c34120c47bb7ab603a97a0a7cae7f0de7b146 * `sqlp` & `joinp`: expanded speed/functionality with upgrade to Polars 0.34.2 https://github.com/jqnatividad/qsv/pull/1385 -* `tojsonl`: improved boolean inferencing. Now correctly infers boolens, even if the enum domain range is more than 2, but has cardinality 2 case-insensitive https://github.com/jqnatividad/qsv/commit/6345f2dc01f6451075ba7f23c35d8ba8cced9293 +* `tojsonl`: improved boolean inferencing. Now correctly infers booleans, even if the enum domain range is more than 2, but has cardinality 2 case-insensitive https://github.com/jqnatividad/qsv/commit/6345f2dc01f6451075ba7f23c35d8ba8cced9293 * build(deps): bump strum_macros from 0.25.2 to 0.25.3 by @dependabot in https://github.com/jqnatividad/qsv/pull/1368 * build(deps): bump regex from 1.10.1 to 1.10.2 by @dependabot in https://github.com/jqnatividad/qsv/pull/1369 * build(deps): bump uuid from 1.4.1 to 1.5.0 by @dependabot in https://github.com/jqnatividad/qsv/pull/1373 diff --git a/README.md b/README.md index 9b82c21d0..79bc53cf8 100644 --- a/README.md +++ b/README.md @@ -382,7 +382,7 @@ cargo test --features datapusher_plus,luau cargo t stats -F all_features # to test a specific command with a specific feature -# here we test only luau comand with the luau feature +# here we test only luau command with the luau feature cargo t luau -F feature_capable,luau # to test the count command with multiple features diff --git a/src/cmd/geocode.rs b/src/cmd/geocode.rs index 849c02d98..8facfab7b 100644 --- a/src/cmd/geocode.rs +++ b/src/cmd/geocode.rs @@ -329,7 +329,7 @@ geocode options: [default: ~/.qsv-cache] INDEX-UPDATE only options: - --languages The comma-delimited, case-insentive list of languages to use when building + --languages The comma-delimited, case-insensitive list of languages to use when building the Geonames cities index. The languages are specified as a comma-separated list of ISO 639-2 codes. See https://download.geonames.org/export/dump/iso-languagecodes.txt to look up codes diff --git a/tests/test_joinp.rs b/tests/test_joinp.rs index e5ab061f7..b3fef95b2 100644 --- a/tests/test_joinp.rs +++ b/tests/test_joinp.rs @@ -41,7 +41,7 @@ macro_rules! joinp_test_comments { }; } -macro_rules! joinp_test_compresssed { +macro_rules! joinp_test_compressed { ($name3:ident, $fun:expr) => { mod $name3 { use std::process; @@ -149,7 +149,7 @@ joinp_test_comments!( } ); -joinp_test_compresssed!( +joinp_test_compressed!( joinp_inner_compressed, |wrk: Workdir, mut cmd: process::Command| { let got: Vec> = wrk.read_stdout(&mut cmd); @@ -335,7 +335,7 @@ joinp_test!(joinp_full, |wrk: Workdir, mut cmd: process::Command| { assert!(got == expected1 || got == expected2); }); -joinp_test_compresssed!( +joinp_test_compressed!( joinp_full_compressed, |wrk: Workdir, mut cmd: process::Command| { cmd.arg("--full");