File tree 5 files changed +16
-16
lines changed
5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -5256,7 +5256,7 @@ dependencies = [
5256
5256
" chrono" ,
5257
5257
" lazy_static" ,
5258
5258
" matchers" ,
5259
- " parking_lot 0.9 .0" ,
5259
+ " parking_lot 0.11 .0" ,
5260
5260
" regex" ,
5261
5261
" serde" ,
5262
5262
" serde_json" ,
Original file line number Diff line number Diff line change @@ -929,7 +929,7 @@ impl<T: ?Sized> RefCell<T> {
929
929
/// Also, please be aware that this method is only for special circumstances and is usually
930
930
/// not what you want. In case of doubt, use [`borrow_mut`] instead.
931
931
///
932
- /// [`borrow_mut`]: Self ::borrow_mut()
932
+ /// [`borrow_mut`]: RefCell ::borrow_mut()
933
933
///
934
934
/// # Examples
935
935
///
@@ -953,7 +953,7 @@ impl<T: ?Sized> RefCell<T> {
953
953
/// ensure no borrows exist and then resets the state tracking shared borrows. This is relevant
954
954
/// if some `Ref` or `RefMut` borrows have been leaked.
955
955
///
956
- /// [`get_mut`]: Self ::get_mut()
956
+ /// [`get_mut`]: RefCell ::get_mut()
957
957
///
958
958
/// # Examples
959
959
///
@@ -1745,7 +1745,7 @@ impl<T: ?Sized> UnsafeCell<T> {
1745
1745
/// when casting to `&mut T`, and ensure that there are no mutations
1746
1746
/// or mutable aliases going on when casting to `&T`.
1747
1747
///
1748
- /// [`get`]: Self ::get()
1748
+ /// [`get`]: UnsafeCell ::get()
1749
1749
///
1750
1750
/// # Examples
1751
1751
///
Original file line number Diff line number Diff line change @@ -776,8 +776,8 @@ impl f32 {
776
776
/// As the target platform's native endianness is used, portable code
777
777
/// should use [`to_be_bytes`] or [`to_le_bytes`], as appropriate, instead.
778
778
///
779
- /// [`to_be_bytes`]: prim@f32:: to_be_bytes()
780
- /// [`to_le_bytes`]: prim@f32:: to_le_bytes()
779
+ /// [`to_be_bytes`]: #method. to_be_bytes
780
+ /// [`to_le_bytes`]: #method. to_le_bytes
781
781
///
782
782
/// # Examples
783
783
///
@@ -804,7 +804,7 @@ impl f32 {
804
804
///
805
805
/// [`to_ne_bytes`] should be preferred over this whenever possible.
806
806
///
807
- /// [`to_ne_bytes`]: prim@f32:: to_ne_bytes()
807
+ /// [`to_ne_bytes`]: #method. to_ne_bytes
808
808
///
809
809
/// # Examples
810
810
///
@@ -864,8 +864,8 @@ impl f32 {
864
864
/// likely wants to use [`from_be_bytes`] or [`from_le_bytes`], as
865
865
/// appropriate instead.
866
866
///
867
- /// [`from_be_bytes`]: prim@f32:: from_be_bytes()
868
- /// [`from_le_bytes`]: prim@f32:: from_le_bytes()
867
+ /// [`from_be_bytes`]: #method. from_be_bytes
868
+ /// [`from_le_bytes`]: #method. from_le_bytes
869
869
///
870
870
/// # Examples
871
871
///
Original file line number Diff line number Diff line change @@ -790,8 +790,8 @@ impl f64 {
790
790
/// As the target platform's native endianness is used, portable code
791
791
/// should use [`to_be_bytes`] or [`to_le_bytes`], as appropriate, instead.
792
792
///
793
- /// [`to_be_bytes`]: prim@f64:: to_be_bytes()
794
- /// [`to_le_bytes`]: prim@f64:: to_le_bytes()
793
+ /// [`to_be_bytes`]: #method. to_be_bytes
794
+ /// [`to_le_bytes`]: #method. to_le_bytes
795
795
///
796
796
/// # Examples
797
797
///
@@ -818,7 +818,7 @@ impl f64 {
818
818
///
819
819
/// [`to_ne_bytes`] should be preferred over this whenever possible.
820
820
///
821
- /// [`to_ne_bytes`]: prim@f64:: to_ne_bytes()
821
+ /// [`to_ne_bytes`]: #method. to_ne_bytes
822
822
///
823
823
/// # Examples
824
824
///
@@ -878,8 +878,8 @@ impl f64 {
878
878
/// likely wants to use [`from_be_bytes`] or [`from_le_bytes`], as
879
879
/// appropriate instead.
880
880
///
881
- /// [`from_be_bytes`]: prim@f64:: from_be_bytes()
882
- /// [`from_le_bytes`]: prim@f64:: from_le_bytes()
881
+ /// [`from_be_bytes`]: #method. from_be_bytes
882
+ /// [`from_le_bytes`]: #method. from_le_bytes
883
883
///
884
884
/// # Examples
885
885
///
Original file line number Diff line number Diff line change @@ -2254,7 +2254,7 @@ impl str {
2254
2254
/// To return a new uppercased value without modifying the existing one, use
2255
2255
/// [`to_ascii_uppercase()`].
2256
2256
///
2257
- /// [`to_ascii_uppercase()`]: prim@str:: to_ascii_uppercase()
2257
+ /// [`to_ascii_uppercase()`]: #method. to_ascii_uppercase
2258
2258
///
2259
2259
/// # Examples
2260
2260
///
@@ -2281,7 +2281,7 @@ impl str {
2281
2281
/// To return a new lowercased value without modifying the existing one, use
2282
2282
/// [`to_ascii_lowercase()`].
2283
2283
///
2284
- /// [`to_ascii_lowercase()`]: prim@str:: to_ascii_lowercase()
2284
+ /// [`to_ascii_lowercase()`]: #method. to_ascii_lowercase
2285
2285
///
2286
2286
/// # Examples
2287
2287
///
You can’t perform that action at this time.
0 commit comments