Skip to content

Commit

Permalink
fix typo (specifies "list" when it should be "map")
Browse files Browse the repository at this point in the history
  • Loading branch information
ix0rai authored Mar 3, 2024
1 parent 611a990 commit 879c572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiki/configuration/getting-started/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

1 comment on commit 879c572

@Cozy-GitHub
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See preview on Cloudflare Pages: https://83b8d698.developer-wiki.pages.dev

Please sign in to comment.