From 175fe574c71474ef461b4e931289c0a1285bd85c Mon Sep 17 00:00:00 2001 From: "Suresh, Kamlesh" Date: Tue, 30 Apr 2019 16:04:51 -0400 Subject: [PATCH] typo --- MVMCoreUI/Atoms/Views/ViewConstrainingView.h | 2 +- MVMCoreUI/FormUIHelpers/FormValidationProtocol.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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? }