Skip to content

Commit

Permalink
chore: correct typos
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
jqnatividad committed Nov 12, 2023
1 parent e41a65b commit 723443e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/geocode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ geocode options:
[default: ~/.qsv-cache]
INDEX-UPDATE only options:
--languages <lang-list> The comma-delimited, case-insentive list of languages to use when building
--languages <lang-list> 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
Expand Down
6 changes: 3 additions & 3 deletions tests/test_joinp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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<Vec<String>> = wrk.read_stdout(&mut cmd);
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit 723443e

Please sign in to comment.