diff --git a/MVMCoreUI/Atoms/Views/ViewConstrainingView.h b/MVMCoreUI/Atoms/Views/ViewConstrainingView.h index e4b9e585..6b97f891 100644 --- a/MVMCoreUI/Atoms/Views/ViewConstrainingView.h +++ b/MVMCoreUI/Atoms/Views/ViewConstrainingView.h @@ -50,7 +50,7 @@ // For setting up the view. - (void)setupView; -// Add a View Constraining View +// Add a view to be constrained in this view. - (void)addConstrainedView:(nonnull UIView *)view; @end diff --git a/MVMCoreUI/FormUIHelpers/FormValidationProtocol.swift b/MVMCoreUI/FormUIHelpers/FormValidationProtocol.swift index 63ef182d..b593a503 100644 --- a/MVMCoreUI/FormUIHelpers/FormValidationProtocol.swift +++ b/MVMCoreUI/FormUIHelpers/FormValidationProtocol.swift @@ -22,6 +22,6 @@ import Foundation // The Field name key value pair for sending to server @objc optional func formFieldName() -> String? - // The Feild value key value pair for sending to server + // The Field value key value pair for sending to server @objc optional func formFieldValue() -> Any? }