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
This PR is a step towards #309.
* Add missing docs for some `util` modules.
* Make `util::metadata::side_metadata::helpers/helpers_32` not public.
* Make `util::reference_processor` not public.
* Allow adding docs for options defined by the `options!` macro.
Copy file name to clipboardExpand all lines: src/util/metadata/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -199,7 +199,7 @@
199
199
//! When a space is created by a plan (e.g. SemiSpace::new), the plan can create its global specs by `MetadataContext::new_global_specs(&[GLOBAL_META_1, GLOBAL_META_2])`. Then,
200
200
//! the global specs are passed to each space that the plan creates.
201
201
//!
202
-
//! Each space will then combine the global specs and its own local specs to create a [SideMetadataContext](crate::util::metadata::side_metadata::SideMetadataContext).
202
+
//! Each space will then combine the global specs and its own local specs to create a SideMetadataContext.
203
203
//! Allocating side metadata space and accounting its memory usage is done by `SideMetadata`. If a space uses `CommonSpace`, `CommonSpace` will create `SideMetadata` and manage
204
204
//! reserving and allocating metadata space when necessary. If a space does not use `CommonSpace`, it should create `SideMetadata` itself and manage allocating metadata space
0 commit comments