Update Home

2025-07-06 18:23:06 +02:00
parent 0eab0c2f7c
commit 992806c58c

@@ -21,7 +21,7 @@
## Example ## Example
```java ```java
Key<Integer> counterKey = new Key<>("counter", Integer.class); Key<Integer> counterKey = Key.of("counter", Integer.class);
Ctx.INSTANCE.put(counterKey, 42); Ctx.INSTANCE.put(counterKey, 42);
```` ````