diff --git a/Library/Hylo/Core/PointerToMutable.hylo b/Library/Hylo/Core/PointerToMutable.hylo index 107f6c44c..d973d098a 100644 --- a/Library/Hylo/Core/PointerToMutable.hylo +++ b/Library/Hylo/Core/PointerToMutable.hylo @@ -87,6 +87,8 @@ public extension PointerToMutable where Pointee: Movable { /// Returns the value at the address represented by `self`, leaving the storage at this address /// uninitialized. + /// + /// Note: This method should be deprecated once nonmutating subscripts are implemented. public fun unsafe_pointee() -> Pointee { return base as* (remote sink Pointee) }