aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Modules.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-01-30 13:20:59 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-01-30 13:26:57 +0200
commit708b83a029b1c2ae91ad6426d45b6723893e1427 (patch)
treeedf5bd6e1cccc01f57572620d96beeafbbe3a175 /docs/markdown/Modules.md
parentf0fbb31ccfa78ca1d7b7f9cedfbb090bf36d3e64 (diff)
downloadmeson-docrewrap.zip
meson-docrewrap.tar.gz
meson-docrewrap.tar.bz2
Rewrap long text lines in docs. [skip ci]docrewrap
Diffstat (limited to 'docs/markdown/Modules.md')
-rw-r--r--docs/markdown/Modules.md7
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')