diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-07-25 17:41:40 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-07-26 11:57:47 +0300 |
commit | 49dd56b3129917ddda53383a76434375d25b706a (patch) | |
tree | a456fd6a73b40dd22ff79651817c832fd63fc5cd | |
parent | b90b69d383d5293345f66dc8f9b55bd53a698542 (diff) | |
download | meson-49dd56b3129917ddda53383a76434375d25b706a.zip meson-49dd56b3129917ddda53383a76434375d25b706a.tar.gz meson-49dd56b3129917ddda53383a76434375d25b706a.tar.bz2 |
add missing link [skip ci]
-rw-r--r-- | docs/markdown/Reference-manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index ee5bcda..8d58e8b 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -131,7 +131,7 @@ This function creates a new top-level target. Like all top-level targets, this integrates with the selected backend. For instance, with Ninja you can run it as `ninja target_name`. This is a dummy target that does not execute any command, but ensures that all dependencies are built. Dependencies can be any -build target (e.g. return value of executable(), custom_target(), etc) +build target (e.g. return value of [executable()](#executable), custom_target(), etc) ### assert() @@ -2254,7 +2254,7 @@ and has the following methods: - `path()` which returns a string pointing to the script or executable **NOTE:** You should not need to use this method. Passing the object - itself should work in all cases. F.ex.: `run_command(obj, arg1, arg2)` + itself should work in all cases. For example: `run_command(obj, arg1, arg2)` ### `environment` object |