diff options
author | Yue Yang <metab0t@users.noreply.github.com> | 2023-01-18 23:42:14 +0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-01-18 11:10:06 -0500 |
commit | b5b2cafcd9b0460e5ab468c1ec10e5379e66d765 (patch) | |
tree | 53c3c1330581359793189e49d60084a9c45e103c | |
parent | 1a0eff005483b63259e365bd4d51be7c4bd3b729 (diff) | |
download | meson-b5b2cafcd9b0460e5ab468c1ec10e5379e66d765.zip meson-b5b2cafcd9b0460e5ab468c1ec10e5379e66d765.tar.gz meson-b5b2cafcd9b0460e5ab468c1ec10e5379e66d765.tar.bz2 |
Fix typo in doc of sourceset module
-rw-r--r-- | docs/markdown/SourceSet-module.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/SourceSet-module.md b/docs/markdown/SourceSet-module.md index 26c1995..70dca20 100644 --- a/docs/markdown/SourceSet-module.md +++ b/docs/markdown/SourceSet-module.md @@ -47,7 +47,7 @@ if zlib.found() then dependencies += [zlib] endif # many more "if"s here... -executable('exe', sources: sources, dependencies: dependencies()) +executable('exe', sources: sources, dependencies: dependencies) ``` Sourcesets can be used with a single invocation of the `apply` method, |