From 879c5727e772c494fa0db70faaeb3e9ada3b7867 Mon Sep 17 00:00:00 2001 From: ix0rai Date: Sun, 3 Mar 2024 12:10:57 -0600 Subject: [PATCH] fix typo (specifies "list" when it should be "map") --- wiki/configuration/getting-started/en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/configuration/getting-started/en.md b/wiki/configuration/getting-started/en.md index 5cfecb54..742f8817 100644 --- a/wiki/configuration/getting-started/en.md +++ b/wiki/configuration/getting-started/en.md @@ -150,4 +150,4 @@ public class ExampleModConfig extends ReflectiveConfig { } ``` -This is pretty similar to building a list. Instead of chaining `put` calls on a builder, we simply add as many values as we want directly in the constructor. Again, the first argument is unused and is to help Quilt Config infer the type. With that, we've made an excellent little config for our mod! If you want to know more, let's move on to the [Advanced Configuring tutorial](https://wiki.quiltmc.org/en/configuration/advanced-configuring). +This is pretty similar to building a map. Here, instead of chaining `put` calls on a builder, we simply add as many values as we want directly in the constructor. Again, the first argument is unused and is to help Quilt Config infer the type. With that, we've made an excellent little config for our mod! If you want to know more, let's move on to the [Advanced Configuring tutorial](https://wiki.quiltmc.org/en/configuration/advanced-configuring).