diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-08-22 17:56:56 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-10-03 12:19:45 +0200 |
commit | 2327cb5eb3ebbbca78701cf4a27ead376d245ffe (patch) | |
tree | 7c843f091e06d168ffa073f0db41d70daef68c9d /docs/markdown/Syntax.md | |
parent | 5dd8171fb3d226eaef52faa821286cf79d0f8a2a (diff) | |
download | meson-2327cb5eb3ebbbca78701cf4a27ead376d245ffe.zip meson-2327cb5eb3ebbbca78701cf4a27ead376d245ffe.tar.gz meson-2327cb5eb3ebbbca78701cf4a27ead376d245ffe.tar.bz2 |
docs: Fix broken links
Diffstat (limited to 'docs/markdown/Syntax.md')
-rw-r--r-- | docs/markdown/Syntax.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 04833e6..8f32765 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -159,7 +159,7 @@ joined = 'C:\\foo\\bar' / 'builddir' # => C:/foo/bar/builddir joined = 'C:\\foo\\bar' / 'D:\\builddir' # => D:/builddir ``` -Note that this is equivalent to using [`join_paths()`](Reference-manual.md#join_paths), +Note that this is equivalent to using [[join_paths]], which was obsoleted by this operator. ### Strings running over multiple lines @@ -455,7 +455,7 @@ Dictionaries are immutable and do not have a guaranteed order. Dictionaries are available since 0.47.0. -Visit the [Reference Manual](Reference-manual.md#dictionary-object) to read +Visit the [[@dict]] objects page in the Reference Manual to read about the methods exposed by dictionaries. Since 0.49.0, you can check if a dictionary contains a key like this: |