Commit 48ea6d0 1 parent 45cdf31 commit 48ea6d0 Copy full SHA for 48ea6d0
File tree 3 files changed +3
-3
lines changed
docs/userguide/src/migration
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ See also:
80
80
81
81
## 0.27.0
82
82
83
- ### ` is_mmtk_object ` returns `Option<ObjectReference >
83
+ ### ` is_mmtk_object ` returns ` Option<ObjectReference> `
84
84
85
85
``` admonish tldr
86
86
`memory_manager::is_mmtk_object` now returns `Option<ObjectReference>` instead of `bool`.
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ impl ReferenceProcessor {
223
223
224
224
// These funcions call `trace_object()`, which will ensure the object and its descendents will
225
225
// be traced. They are only called in steps that expand the transitive closure. That include
226
- // retaining soft references, and (for MarkSweep ) tracing objects for forwarding.
226
+ // retaining soft references, and (for MarkCompact ) tracing objects for forwarding.
227
227
// Note that finalizers also expand the transitive closure.
228
228
// These functions are intended to make the code easier to understand.
229
229
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ pub trait ReferenceGlue<VM: VMBinding> {
28
28
/// Get the referent from a weak reference object.
29
29
///
30
30
/// Arguments:
31
- /// * `object`: Reference to the referent. `None`` if the object currently does not point to a
31
+ /// * `object`: Reference to the referent. `None` if the object currently does not point to a
32
32
/// referent. This may happen if the reference has been cleared.
33
33
fn get_referent ( object : ObjectReference ) -> Option < ObjectReference > ;
34
34
You can’t perform that action at this time.
0 commit comments