Skip to content

Commit c69088e

Browse files
committed
Fix accidental HTML tags
1 parent e9f80d5 commit c69088e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ deny:
2323
cargo-deny --all-features check
2424

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

2828
test-build *flags:
2929
just-cargo test-build --frozen {{ flags }}
@@ -32,7 +32,7 @@ test *flags:
3232
just-cargo test --frozen {{ flags }}
3333

3434
publish *flags:
35-
cargo publish --features=k8s-openapi/v1_25 {{ flags }}
35+
cargo publish --features=k8s-openapi/latest {{ flags }}
3636

3737
action-lint:
3838
just-dev lint-actions

src/httproute.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,9 @@ pub enum HttpPathModifier {
609609
/// /foo/bar | /foo/ | /xyz/ | /xyz/bar
610610
/// /foo | /foo | /xyz | /xyz
611611
/// /foo/ | /foo | /xyz | /xyz/
612-
/// /foo/bar | /foo | <empty string> | /bar
613-
/// /foo/ | /foo | <empty string> | /
614-
/// /foo | /foo | <empty string> | /
612+
/// /foo/bar | /foo | _empty string_ | /bar
613+
/// /foo/ | /foo | _empty string_ | /
614+
/// /foo | /foo | _empty string_ | /
615615
/// /foo/ | /foo | / | /
616616
/// /foo | /foo | / | /
617617
#[serde(rename_all = "camelCase")]

0 commit comments

Comments
 (0)