Skip to content

Commit 723443e

Browse files
committed
chore: correct typos
[skip ci]
1 parent e41a65b commit 723443e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Users can manually verify the signatures by downloading the zipsign public key a
4040
* `luau`: replaced sanitise-file-name with more popular sanitize-filename crate https://github.com/jqnatividad/qsv/commit/8927cb70bc92e9e1360547e96d1ac10e6037e9e3
4141
* `cat`: minor optimization by preallocating with capacity https://github.com/jqnatividad/qsv/commit/c13c34120c47bb7ab603a97a0a7cae7f0de7b146
4242
* `sqlp` & `joinp`: expanded speed/functionality with upgrade to Polars 0.34.2 https://github.com/jqnatividad/qsv/pull/1385
43-
* `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
43+
* `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
4444
* build(deps): bump strum_macros from 0.25.2 to 0.25.3 by @dependabot in https://github.com/jqnatividad/qsv/pull/1368
4545
* build(deps): bump regex from 1.10.1 to 1.10.2 by @dependabot in https://github.com/jqnatividad/qsv/pull/1369
4646
* build(deps): bump uuid from 1.4.1 to 1.5.0 by @dependabot in https://github.com/jqnatividad/qsv/pull/1373

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ cargo test --features datapusher_plus,luau
382382
cargo t stats -F all_features
383383

384384
# to test a specific command with a specific feature
385-
# here we test only luau comand with the luau feature
385+
# here we test only luau command with the luau feature
386386
cargo t luau -F feature_capable,luau
387387

388388
# to test the count command with multiple features

src/cmd/geocode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ geocode options:
329329
[default: ~/.qsv-cache]
330330
331331
INDEX-UPDATE only options:
332-
--languages <lang-list> The comma-delimited, case-insentive list of languages to use when building
332+
--languages <lang-list> The comma-delimited, case-insensitive list of languages to use when building
333333
the Geonames cities index.
334334
The languages are specified as a comma-separated list of ISO 639-2 codes.
335335
See https://download.geonames.org/export/dump/iso-languagecodes.txt to look up codes

tests/test_joinp.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ macro_rules! joinp_test_comments {
4141
};
4242
}
4343

44-
macro_rules! joinp_test_compresssed {
44+
macro_rules! joinp_test_compressed {
4545
($name3:ident, $fun:expr) => {
4646
mod $name3 {
4747
use std::process;
@@ -149,7 +149,7 @@ joinp_test_comments!(
149149
}
150150
);
151151

152-
joinp_test_compresssed!(
152+
joinp_test_compressed!(
153153
joinp_inner_compressed,
154154
|wrk: Workdir, mut cmd: process::Command| {
155155
let got: Vec<Vec<String>> = wrk.read_stdout(&mut cmd);
@@ -335,7 +335,7 @@ joinp_test!(joinp_full, |wrk: Workdir, mut cmd: process::Command| {
335335
assert!(got == expected1 || got == expected2);
336336
});
337337

338-
joinp_test_compresssed!(
338+
joinp_test_compressed!(
339339
joinp_full_compressed,
340340
|wrk: Workdir, mut cmd: process::Command| {
341341
cmd.arg("--full");

0 commit comments

Comments
 (0)