docs: fix typo in spec module property type

This commit is contained in:
Father Joseph 2024-09-20 15:28:03 -06:00 committed by GitHub
commit 69a59cd3f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -89,5 +89,5 @@ Refer to the [Versioning](./versioning.md) section for more information.
| ------------ | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **optional** | `boolean?` | When a spec is tagged optional, it will only be included in the final spec, when the same plugin has been specified at least once somewhere else without `optional`. This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part of the user's plugins. |
| **specs** | `LazySpec` | A list of plugin specs defined in the scope of the plugin. This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part of the user's plugins. When the plugin is disabled, none of the scoped specs will be included in the final spec. Similar to `dependencies` without the automatic loading of the specs. |
| **module** | `false?` | Do not automatically load this Lua module when it's required somewhere |
| **module** | `boolean?` | Do not automatically load this Lua module when it's required somewhere |
| **import** | `string?` | Import the given spec module. |