···9696/// An owned CoreFoundation string that calls `CFRelease` on drop.
9797///
9898/// Created from a Rust `&str` via [`CfString::new`]. The underlying
9999-/// `CFStringRef` can be borrowed with [`CfString::as_ref`] for passing
9999+/// `CFStringRef` can be borrowed with [`CfString::as_cf_ref`] for passing
100100/// to AppKit APIs.
101101pub struct CfString(NonNull<__CFString>);
102102