From 9a158c4909c3d73a880006610ad1d9d7ec28beb0 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 28 Oct 2021 10:05:09 -0500 Subject: [PATCH] added comments Signed-off-by: Matt Bruce --- MVMCore/MVMCore/Models/Model/ModelRegistry.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MVMCore/MVMCore/Models/Model/ModelRegistry.swift b/MVMCore/MVMCore/Models/Model/ModelRegistry.swift index f148119..f3fbae6 100644 --- a/MVMCore/MVMCore/Models/Model/ModelRegistry.swift +++ b/MVMCore/MVMCore/Models/Model/ModelRegistry.swift @@ -164,6 +164,7 @@ public struct ModelRegistry { // MARK: - Functions //-------------------------------------------------- + ///This returns a handler type. public static func getHandler(_ model: ModelProtocol) throws -> ModelHandlerProtocol.Type { return try getHandlerType(for: type(of: model)) }