summaryrefslogtreecommitdiffstats
path: root/src/tools/jsondoclint/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/jsondoclint/src/main.rs')
-rw-r--r--src/tools/jsondoclint/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/jsondoclint/src/main.rs b/src/tools/jsondoclint/src/main.rs
index 05e938f4f..ee163ddfd 100644
--- a/src/tools/jsondoclint/src/main.rs
+++ b/src/tools/jsondoclint/src/main.rs
@@ -72,7 +72,7 @@ fn main() -> Result<()> {
)
}
[sel] => eprintln!(
- "{} not in index or paths, but refered to at '{}'",
+ "{} not in index or paths, but referred to at '{}'",
err.id.0,
json_find::to_jsonpath(&sel)
),
@@ -85,12 +85,12 @@ fn main() -> Result<()> {
.collect::<Vec<_>>()
.join(", ");
eprintln!(
- "{} not in index or paths, but refered to at {sels}",
+ "{} not in index or paths, but referred to at {sels}",
err.id.0
);
} else {
eprintln!(
- "{} not in index or paths, but refered to at '{}' and {} more",
+ "{} not in index or paths, but referred to at '{}' and {} more",
err.id.0,
json_find::to_jsonpath(&sel),
sels.len() - 1,