From 992806c58c42e356b064bd7d0998f2a9ef6e3cfd Mon Sep 17 00:00:00 2001 From: Leo Galambos Date: Sun, 6 Jul 2025 18:23:06 +0200 Subject: [PATCH] Update Home --- Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Home.md b/Home.md index 75b6e9c..83d2151 100644 --- a/Home.md +++ b/Home.md @@ -21,7 +21,7 @@ ## Example ```java -Key counterKey = new Key<>("counter", Integer.class); +Key counterKey = Key.of("counter", Integer.class); Ctx.INSTANCE.put(counterKey, 42); ````