diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 13:20:59 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 16:19:59 +0000 |
commit | f72ee8e742a171db74ed32b54b85953b8dfe1d77 (patch) | |
tree | 80e015f57b8bfc3c0a0fccb6b0d4ef4d602c0a0d /docs/markdown/Modules.md | |
parent | 4f8cecca9733588b083dba8488143fa1ffb0e495 (diff) | |
download | meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.zip meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.gz meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.bz2 |
Rewrap long text lines in docs. [skip ci]
Diffstat (limited to 'docs/markdown/Modules.md')
-rw-r--r-- | docs/markdown/Modules.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/markdown/Modules.md b/docs/markdown/Modules.md index c354169..a966682 100644 --- a/docs/markdown/Modules.md +++ b/docs/markdown/Modules.md @@ -4,13 +4,16 @@ short-description: Meson modules for common build operations # Modules -In addition to core language features, Meson also provides a module system aimed at providing helper methods for common build operations. Using modules is simple, first you import them: +In addition to core language features, Meson also provides a module +system aimed at providing helper methods for common build operations. +Using modules is simple, first you import them: ```meson mymod = import('somemodule') ``` -After this you can use the returned object to use the functionality provided: +After this you can use the returned object to use the functionality +provided: ```meson mymod.do_something('text argument') |