From 508d02e7b9c0a30b8c2f7ce88dddd6e0c5aa83b7 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 23 Jan 2023 09:27:04 -0600 Subject: [PATCH] updated naming Signed-off-by: Matt Bruce --- VDS/Protocols/Primitive.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Protocols/Primitive.swift b/VDS/Protocols/Primitive.swift index 5e895780..30982c67 100644 --- a/VDS/Protocols/Primitive.swift +++ b/VDS/Protocols/Primitive.swift @@ -8,6 +8,6 @@ extension Bool: Primitive {} extension Array: Primitive where Element: Primitive {} extension Dictionary: Primitive where Key == String, Value: Primitive {} -public protocol PrimitiveUserInfo { +public protocol UserInfoable { var userInfo: [String: Primitive] { get set } }