From 05d84619659c008a09759561b182e902bc3f2d48 Mon Sep 17 00:00:00 2001 From: Mark Sisson <5761292+marksisson@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:14:17 -0500 Subject: [PATCH] fix: correct typo in module-system tutorial --- source/tutorials/module-system/module-system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/module-system/module-system.md b/source/tutorials/module-system/module-system.md index f0c3063..144ae42 100644 --- a/source/tutorials/module-system/module-system.md +++ b/source/tutorials/module-system/module-system.md @@ -555,7 +555,7 @@ Reference this new file in `default.nix` using the `imports` attribute: We want to set multiple markers on the map. A marker is a complex type with multiple fields. -This is wher one of the most useful types included in the module system's type system comes into play: `submodule`. +This is where one of the most useful types included in the module system's type system comes into play: `submodule`. This type allows you to define nested modules with their own options. Here, you will define a new `map.markers` option whose type is a list of submodules, each with a nested `location` type, allowing you to define a list of markers on the map.