From ad03637e41a4183e8b1a235a5af161a2d30db76e Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 25 Aug 2023 16:22:39 -0500 Subject: [PATCH] updated comments Signed-off-by: Matt Bruce --- VDS/Protocols/Enabling.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VDS/Protocols/Enabling.swift b/VDS/Protocols/Enabling.swift index de9fb3ef..b6e429ef 100644 --- a/VDS/Protocols/Enabling.swift +++ b/VDS/Protocols/Enabling.swift @@ -7,8 +7,8 @@ import Foundation -/// Any object that can be disabled, which may change the appearance +/// Any object that can be Enabled, which may change the appearance public protocol Enabling { - /// Whether this object is disabled or not + /// Whether this object is enabled or not var isEnabled: Bool { get set } }