Skip to content

Commit 4267b56

Browse files
committed
comment
1 parent 923be31 commit 4267b56

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/byondapi-rs/src/value/refcounted.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use super::ByondValue;
22
use std::ops::{Deref, DerefMut};
33

4-
/// Refcounted ByondValue, for refs you want rust to handle incrementing and decrementing.
4+
/// Refcounted [`ByondValue`], for refs you want rust to handle incrementing and decrementing.
5+
/// Recommended practise is to not use the [`ByondValue`] that's already converted to [`RcByondValue`]
56
#[derive(Debug)]
67
pub struct RcByondValue(ByondValue);
78

0 commit comments

Comments
 (0)