File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
//! Go's `time.ParseDuration`, with additional restrictions: negative
9
9
//! durations, units smaller than millisecond, and floating point are not
10
10
//! allowed, and durations are limited to four components of no more than five
11
- //! digits each. See https://gateway-api.sigs.k8s.io/geps/gep-2257 for the
11
+ //! digits each. See < https://gateway-api.sigs.k8s.io/geps/gep-2257> for the
12
12
//! complete specification.
13
13
14
14
use kube_core:: Duration as k8sDuration;
@@ -24,7 +24,7 @@ use std::time::Duration as stdDuration;
24
24
/// obey GEP-2257. It is based on `std::time::Duration` and uses
25
25
/// `kube::core::Duration` for the heavy lifting of parsing.
26
26
///
27
- /// See https://gateway-api.sigs.k8s.io/geps/gep-2257 for the complete
27
+ /// See < https://gateway-api.sigs.k8s.io/geps/gep-2257> for the complete
28
28
/// specification.
29
29
///
30
30
/// Per GEP-2257, when parsing a `gateway_api::Duration` from a string, the
You can’t perform that action at this time.
0 commit comments