Fix spelling (#1463)
This commit is contained in:
parent
157862d398
commit
50f3750842
@ -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
|
||||
|
@ -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]
|
||||
|
@ -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:
|
||||
|
@ -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()
|
||||
|
@ -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;
|
||||
|
@ -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)),
|
||||
}
|
||||
|
@ -251,7 +251,7 @@ test! {
|
||||
}
|
||||
|
||||
test! {
|
||||
name: assignment_parenthized_expression,
|
||||
name: assignment_parenthesized_expression,
|
||||
justfile: "
|
||||
foo := ('foo')
|
||||
",
|
||||
|
@ -85,7 +85,7 @@ fn continuations_with_echo_comments_true() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn dont_evalute_comments() {
|
||||
fn dont_evaluate_comments() {
|
||||
Test::new()
|
||||
.justfile(
|
||||
"
|
||||
|
@ -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"],
|
||||
|
@ -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#"
|
||||
|
Loading…
Reference in New Issue
Block a user