diff options
| author | AudaciousAxiom <179637270+AudaciousAxiom@users.noreply.github.com> | 2025-09-02 21:34:04 +0200 | 
|---|---|---|
| committer | AudaciousAxiom <179637270+AudaciousAxiom@users.noreply.github.com> | 2025-09-02 22:11:29 +0200 | 
| commit | 5a9e2e4aa8b388b25d146d86f70e55427bda8dd5 (patch) | |
| tree | 5785b5cd5c3defb47e5e4103bf98a9a40ab3600a /library/core/src/ops/range.rs | |
| parent | 94722cabf4983abcbe5088c1b8e81517ba2a7126 (diff) | |
| download | rust-5a9e2e4aa8b388b25d146d86f70e55427bda8dd5.tar.gz rust-5a9e2e4aa8b388b25d146d86f70e55427bda8dd5.zip | |
docs(std): add missing closing code block fences in doc comments
Diffstat (limited to 'library/core/src/ops/range.rs')
| -rw-r--r-- | library/core/src/ops/range.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/library/core/src/ops/range.rs b/library/core/src/ops/range.rs index c0a27775694..58a9431bd84 100644 --- a/library/core/src/ops/range.rs +++ b/library/core/src/ops/range.rs @@ -836,6 +836,7 @@ pub trait RangeBounds<T: ?Sized> { /// assert!(!(0.0..1.0).contains(&f32::NAN)); /// assert!(!(0.0..f32::NAN).contains(&0.5)); /// assert!(!(f32::NAN..1.0).contains(&0.5)); + /// ``` #[inline] #[stable(feature = "range_contains", since = "1.35.0")] fn contains<U>(&self, item: &U) -> bool | 
