1
0
mirror of https://github.com/casey/just synced 2024-06-29 06:24:38 +00:00

Fix spelling (#1463)

This commit is contained in:
Josh Soref 2022-12-30 15:36:08 -05:00 committed by GitHub
parent 157862d398
commit 50f3750842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 12 additions and 12 deletions

View File

@ -735,7 +735,7 @@ Changelog
### Misc
- Build and upload release artifacts from GitHub Actions ([#581](https://github.com/casey/just/pull/581))
- List solus package in readme ([#579](https://github.com/casey/just/pull/579))
- Expand use of Github Actions ([#580](https://github.com/casey/just/pull/580))
- Expand use of GitHub Actions ([#580](https://github.com/casey/just/pull/580))
- Fix readme typo: interpetation -> interpretation ([#578](https://github.com/casey/just/pull/578) by [Plommonsorbet](https://github.com/Plommonsorbet))
[0.5.5](https://github.com/casey/just/releases/tag/v0.5.5) - 2020-1-15

View File

@ -1036,7 +1036,7 @@ y := """
"""
```
Similar to unindented strings, indented double-quoted strings process escape sequences, and indented single-quoted strings ignore escape sequences. Escape sequence processing takes place after unindentation. The unindention algorithm does not take escape-sequence produced whitespace or newlines into account.
Similar to unindented strings, indented double-quoted strings process escape sequences, and indented single-quoted strings ignore escape sequences. Escape sequence processing takes place after unindentation. The unindentation algorithm does not take escape-sequence produced whitespace or newlines into account.
### Ignoring Errors
@ -1248,7 +1248,7 @@ directory that contains the `justfile`. This can be disabled using the
relative to the invocation directory, or which operate on the current
directory.
For exmaple, this `commit` recipe:
For example, this `commit` recipe:
```just
[no-cd]

View File

@ -188,7 +188,7 @@ variadic $VAR1_1 VAR2 VAR3 VAR4=("a") +$FLAGS='-q': foo2 braces
time:
@-date +"%H:%S"
-cat /tmp/nonexistant_file.txt
-cat /tmp/nonexistent_file.txt
@echo "finished"
justwords:

View File

@ -91,7 +91,7 @@ impl<'src> Serialize for Expression<'src> {
Self::Call { thunk } => thunk.serialize(serializer),
Self::Concatenation { lhs, rhs } => {
let mut seq = serializer.serialize_seq(None)?;
seq.serialize_element("concatinate")?;
seq.serialize_element("concatenate")?;
seq.serialize_element(lhs)?;
seq.serialize_element(rhs)?;
seq.end()

View File

@ -269,7 +269,7 @@ impl<'src> Lexer<'src> {
matches!(c, 'a'..='z' | 'A'..='Z' | '_')
}
/// True if `c` can be a continuation character of an idenitifier
/// True if `c` can be a continuation character of an identifier
fn is_identifier_continue(c: char) -> bool {
if Self::is_identifier_start(c) {
return true;

View File

@ -992,7 +992,7 @@ mod tests {
}
test! {
name: alias_with_attributee,
name: alias_with_attribute,
text: "[private]\nalias t := test",
tree: (justfile (alias t test)),
}

View File

@ -251,7 +251,7 @@ test! {
}
test! {
name: assignment_parenthized_expression,
name: assignment_parenthesized_expression,
justfile: "
foo := ('foo')
",

View File

@ -85,7 +85,7 @@ fn continuations_with_echo_comments_true() {
}
#[test]
fn dont_evalute_comments() {
fn dont_evaluate_comments() {
Test::new()
.justfile(
"

View File

@ -231,7 +231,7 @@ fn dependency_argument() {
"arguments": [
"baz",
"baz",
["concatinate", "a", "b"],
["concatenate", "a", "b"],
["evaluate", "echo"],
["variable", "x"],
["if", "==", "a", "b", "c", "d"],

View File

@ -19,7 +19,7 @@ fn windows_shell_setting() {
}
#[test]
fn windows_powershell_setting_uses_powershell() {
fn windows_powershell_setting_uses_powershell_set_shell() {
Test::new()
.justfile(
r#"
@ -37,7 +37,7 @@ fn windows_powershell_setting_uses_powershell() {
}
#[test]
fn windows_poweshell_setting_uses_powershell() {
fn windows_powershell_setting_uses_powershell() {
Test::new()
.justfile(
r#"