From 9d40ab654a6cfe7e586da80e4f3f7fc902efeecc Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Mon, 7 Aug 2023 21:51:05 -0400 Subject: [PATCH] Clarfied wording in Role.Object --- theme/theme.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/theme/theme.go b/theme/theme.go index 3e17dfe..4d0322c 100644 --- a/theme/theme.go +++ b/theme/theme.go @@ -10,10 +10,11 @@ type Role struct { Package string // Object specifies what type of object it is. For example: - // - textInput - // - table - // - label - // - dial + // - TextInput + // - Table + // - Label + // - Dial + // This should correspond directly to the type name of the object. Object string }