Skip to content

Commit

Permalink
Fix accidental HTML tags
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r committed Dec 11, 2023
1 parent e9f80d5 commit c69088e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ deny:
cargo-deny --all-features check

docs:
just-cargo doc --frozen --no-deps --features=k8s-openapi/v1_25
just-cargo doc --frozen --no-deps --features=k8s-openapi/latest

test-build *flags:
just-cargo test-build --frozen {{ flags }}
Expand All @@ -32,7 +32,7 @@ test *flags:
just-cargo test --frozen {{ flags }}

publish *flags:
cargo publish --features=k8s-openapi/v1_25 {{ flags }}
cargo publish --features=k8s-openapi/latest {{ flags }}

action-lint:
just-dev lint-actions
Expand Down
6 changes: 3 additions & 3 deletions src/httproute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,9 @@ pub enum HttpPathModifier {
/// /foo/bar | /foo/ | /xyz/ | /xyz/bar
/// /foo | /foo | /xyz | /xyz
/// /foo/ | /foo | /xyz | /xyz/
/// /foo/bar | /foo | <empty string> | /bar
/// /foo/ | /foo | <empty string> | /
/// /foo | /foo | <empty string> | /
/// /foo/bar | /foo | _empty string_ | /bar
/// /foo/ | /foo | _empty string_ | /
/// /foo | /foo | _empty string_ | /
/// /foo/ | /foo | / | /
/// /foo | /foo | / | /
#[serde(rename_all = "camelCase")]
Expand Down

0 comments on commit c69088e

Please sign in to comment.