updated comments

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-08-25 16:22:39 -05:00
parent 52b08b88c9
commit ad03637e41

View File

@ -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 }
}