summaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Property.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Property.h b/public/frameworks/CoreFoundation.fwrk/headers/Property.h
index d16f7742..28315938 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Property.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Property.h
@@ -26,11 +26,11 @@ using CFPropertyId = UIntPtr;
/// ================================================================================
/// @brief User property class.
-/// @example /prop/foo or /prop/bar
+/// @note /prop/foo or /prop/bar are properties.
/// ================================================================================
class CFProperty final CF_OBJECT {
public:
- CFProperty(CFRef<CFGUID> guid, CFString& name, CFPropertyId value);
+ CFProperty(CFRef<CFGuid> guid, CFString& name, CFPropertyId value);
~CFProperty() override = default;
public:
@@ -44,7 +44,7 @@ class CFProperty final CF_OBJECT {
private:
CFString* fName{nullptr};
CFPropertyId fValue{0UL};
- CFRef<CFGUID> fGUID{};
+ CFRef<CFGuid> fGUID{};
};
template <SizeT N>