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
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the documentation for the Memory trait to improve clarity around WebAssembly semantics, in particular how out-of-bounds accesses result in panics or traps.
Updated trait comments in src/lib.rs for methods such as size, grow, read, read_unsafe, and write.
Enhanced the documentation in docs/src/concepts/memory-trait.md by adding a detailed “Safety contract” section.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
File
Description
src/lib.rs
Refined and clarified method documentation for the Memory trait.
docs/src/concepts/memory-trait.md
Expanded documentation with a safety contract outlining caller responsibilities.
Comments suppressed due to low confidence (2)
src/lib.rs:78
[nitpick] Consider clarifying what is meant by 'does not overlap with self' to indicate that it refers to avoiding overlap with the memory region being read from.
/// - The memory range `dst..dst+count` does not overlap with `self`.
docs/src/concepts/memory-trait.md:29
[nitpick] Consider providing an example or additional context in the safety contract to further illustrate the correct usage of the read and write methods under out-of-bounds conditions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR documents that
Memorytrait methods panic or trap on out-of-bounds access.