Skip to content

Commit

Permalink
Update documentation of AnyObject
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jan 30, 2024
1 parent f8973af commit 9b48f3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/fj-core/src/objects/object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ use crate::{

macro_rules! object {
($($ty:ident, $name:expr, $store:ident;)*) => {
/// An object
/// An enum that can hold object
///
/// This enum is generic over the form that the object takes. An
/// `Object<Bare>` contains bare objects, like `Curve`. An
/// `Object<BehindHandle>` contains handles, like `Handle<Curve>`.
/// `AnyObject<Bare>` contains bare objects, like `Curve`. An
/// `AnyObject<BehindHandle>` contains handles, like `Handle<Curve>`.
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub enum AnyObject<F: Form> {
$(
Expand Down

0 comments on commit 9b48f3b

Please sign in to comment.