Skip to content

Commit ad66bad

Browse files
committed
typo fix
1 parent e385902 commit ad66bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/falsepattern/lib/config/ConfigurationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public static List<IConfigElement> getConfigElements(Class<?> configClass) throw
204204
.map((l) -> l.contains(configClass))
205205
.orElse(false) ? conf : null)
206206
.orElseThrow(() -> new ConfigException(
207-
"Tried to get config elements for non-registed config class!"));
207+
"Tried to get config elements for non-registered config class!"));
208208
val category = cfg.category();
209209
val elements = new ConfigElement<>(rawConfig.getCategory(category)).getChildElements();
210210
return elements.stream().map((element) -> new IConfigElementProxy(element, () -> {

0 commit comments

Comments
 (0)