From c69088e02a59d5f5d72a513ecfb69a54edfb0e7c Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Mon, 11 Dec 2023 22:23:05 +0000 Subject: [PATCH] Fix accidental HTML tags --- justfile | 4 ++-- src/httproute.rs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/justfile b/justfile index f3b8a70..b3fcce6 100644 --- a/justfile +++ b/justfile @@ -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 }} @@ -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 diff --git a/src/httproute.rs b/src/httproute.rs index 720b875..973367d 100644 --- a/src/httproute.rs +++ b/src/httproute.rs @@ -609,9 +609,9 @@ pub enum HttpPathModifier { /// /foo/bar | /foo/ | /xyz/ | /xyz/bar /// /foo | /foo | /xyz | /xyz /// /foo/ | /foo | /xyz | /xyz/ - /// /foo/bar | /foo | | /bar - /// /foo/ | /foo | | / - /// /foo | /foo | | / + /// /foo/bar | /foo | _empty string_ | /bar + /// /foo/ | /foo | _empty string_ | / + /// /foo | /foo | _empty string_ | / /// /foo/ | /foo | / | / /// /foo | /foo | / | / #[serde(rename_all = "camelCase")]