You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dtolnay opened this issue
Oct 29, 2017
· 1 comment
Labels
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsC-cleanupCategory: PRs that clean code up or issues documenting cleanup.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
The documentation of std::ptr::read and many other methods still refers to zero_memory and copy_memory which have since been removed or renamed.
src/libcore/ptr.rs
231: /// `zero_memory`, or `copy_memory`). Note that `*src = foo` counts as a use
267: /// `zero_memory`, or `copy_memory`). Note that `*src = foo` counts as a use
400: /// `zero_memory`, or `copy_memory`). Note that `*src = foo` counts as a use
874: /// `zero_memory`, or `copy_memory`). Note that `*self = foo` counts as a use
928: /// `zero_memory`, or `copy_memory`). Note that `*self = foo` counts as a use
964: /// `zero_memory`, or `copy_memory`). Note that `*self = foo` counts as a use
1572: /// `zero_memory`, or `copy_memory`). Note that `*self = foo` counts as a use
1626: /// `zero_memory`, or `copy_memory`). Note that `*self = foo` counts as a use
1662: /// `zero_memory`, or `copy_memory`). Note that `*self = foo` counts as a use
The text was updated successfully, but these errors were encountered:
Looks like the relevant refactoring was done in #22729.
kennytm
added
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
A-docs
Area: Documentation for any part of the project, including the compiler, standard library, and tools
labels
Oct 29, 2017
dtolnay
changed the title
Documentation stil refers to zero_memory and copy_memory
Documentation still refers to zero_memory and copy_memory
Oct 30, 2017
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsC-cleanupCategory: PRs that clean code up or issues documenting cleanup.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
The documentation of
std::ptr::read
and many other methods still refers tozero_memory
andcopy_memory
which have since been removed or renamed.The text was updated successfully, but these errors were encountered: