Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Basic usage" is redundant for there is just one example #108016

Merged
merged 1 commit into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions library/core/src/ptr/const_ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let s: &str = "Follow the rabbit";
/// let ptr: *const u8 = s.as_ptr();
Expand Down Expand Up @@ -323,8 +321,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let ptr: *const u8 = &10u8 as *const u8;
///
Expand Down Expand Up @@ -384,8 +380,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// #![feature(ptr_as_uninit)]
///
Expand Down Expand Up @@ -449,8 +443,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let s: &str = "123";
/// let ptr: *const u8 = s.as_ptr();
Expand Down Expand Up @@ -526,8 +518,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// // Iterate using a raw pointer in increments of two elements
/// let data = [1u8, 2, 3, 4, 5];
Expand Down Expand Up @@ -908,8 +898,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let s: &str = "123";
/// let ptr: *const u8 = s.as_ptr();
Expand Down Expand Up @@ -993,8 +981,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let s: &str = "123";
///
Expand Down Expand Up @@ -1072,8 +1058,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// // Iterate using a raw pointer in increments of two elements
/// let data = [1u8, 2, 3, 4, 5];
Expand Down Expand Up @@ -1152,8 +1136,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// // Iterate using a raw pointer in increments of two elements (backwards)
/// let data = [1u8, 2, 3, 4, 5];
Expand Down Expand Up @@ -1359,7 +1341,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
/// ```
/// #![feature(pointer_is_aligned)]
/// #![feature(pointer_byte_offsets)]
Expand Down Expand Up @@ -1482,7 +1463,6 @@ impl<T: ?Sized> *const T {
///
/// # Examples
///
/// Basic usage:
/// ```
/// #![feature(pointer_is_aligned)]
/// #![feature(pointer_byte_offsets)]
Expand Down
22 changes: 0 additions & 22 deletions library/core/src/ptr/mut_ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let mut s = [1, 2, 3];
/// let ptr: *mut u32 = s.as_mut_ptr();
Expand Down Expand Up @@ -332,8 +330,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let ptr: *mut u8 = &mut 10u8 as *mut u8;
///
Expand Down Expand Up @@ -396,8 +392,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// #![feature(ptr_as_uninit)]
///
Expand Down Expand Up @@ -461,8 +455,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let mut s = [1, 2, 3];
/// let ptr: *mut u32 = s.as_mut_ptr();
Expand Down Expand Up @@ -539,8 +531,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// // Iterate using a raw pointer in increments of two elements
/// let mut data = [1u8, 2, 3, 4, 5];
Expand Down Expand Up @@ -660,8 +650,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let mut s = [1, 2, 3];
/// let ptr: *mut u32 = s.as_mut_ptr();
Expand Down Expand Up @@ -1010,8 +998,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let s: &str = "123";
/// let ptr: *const u8 = s.as_ptr();
Expand Down Expand Up @@ -1095,8 +1081,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// let s: &str = "123";
///
Expand Down Expand Up @@ -1174,8 +1158,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// // Iterate using a raw pointer in increments of two elements
/// let data = [1u8, 2, 3, 4, 5];
Expand Down Expand Up @@ -1254,8 +1236,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// // Iterate using a raw pointer in increments of two elements (backwards)
/// let data = [1u8, 2, 3, 4, 5];
Expand Down Expand Up @@ -1627,7 +1607,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
/// ```
/// #![feature(pointer_is_aligned)]
/// #![feature(pointer_byte_offsets)]
Expand Down Expand Up @@ -1752,7 +1731,6 @@ impl<T: ?Sized> *mut T {
///
/// # Examples
///
/// Basic usage:
/// ```
/// #![feature(pointer_is_aligned)]
/// #![feature(pointer_byte_offsets)]
Expand Down