Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
pyohannes committed Apr 10, 2024
1 parent 34e7ae9 commit 6d759a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions crates/weaver_resolver/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -783,11 +783,11 @@ groups:
- id: group.one
type: attribute_group
brief: \"Group one\"
extends: group.non.existant.one
extends: group.non.existent.one
- id: group.two
type: attribute_group
brief: \"Group two\"
extends: group.non.existant.two",
extends: group.non.existent.two",
);

assert!(result.is_err());
Expand All @@ -809,9 +809,9 @@ groups:
type: span
brief: 'Span one'
attributes:
- ref: non.existant.one
- ref: non.existent.one
requirement_level: opt_in
- ref: non.existant.two
- ref: non.existent.two
requirement_level: opt_in",
);

Expand All @@ -834,9 +834,9 @@ groups:
type: span
brief: 'Span one'
constraints:
- include: 'non.existant.one'
- include: 'non.existant.two'
- include: 'non.existant.three'",
- include: 'non.existent.one'
- include: 'non.existent.two'
- include: 'non.existent.three'",
);

assert!(result.is_err());
Expand Down

0 comments on commit 6d759a0

Please sign in to comment.