diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-27 19:43:39 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-27 19:43:39 -0400 |
commit | 6cc1f26e55f03127c4f537f96ce095716f0bb7da (patch) | |
tree | 165621a68b1c0b08cb00600d2c694ab1ec7988ce /docs/markdown | |
parent | 21493fe5c6a43e34407d43f43fa9006c126d5554 (diff) | |
download | meson-6cc1f26e55f03127c4f537f96ce095716f0bb7da.zip meson-6cc1f26e55f03127c4f537f96ce095716f0bb7da.tar.gz meson-6cc1f26e55f03127c4f537f96ce095716f0bb7da.tar.bz2 |
docs: fix broken links in i18n modue
We want to talk about the kwargs to the custom_target() function, but
tried to link to custom_tgt instead, which is not a function. It is an
object, but this was the wrong reference method for a type.
We want the function anyway, so use that.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/i18n-module.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/i18n-module.md b/docs/markdown/i18n-module.md index 49a8d9f..a1efa5a 100644 --- a/docs/markdown/i18n-module.md +++ b/docs/markdown/i18n-module.md @@ -46,7 +46,7 @@ This function also defines targets for maintainers to use: ### i18n.merge_file() This merges translations into a text file using `msgfmt`. See -[[custom_tgt]] +[[custom_target]] for normal keywords. In addition it accepts these keywords: * `output`: same as `custom_target` but only accepts one item @@ -63,7 +63,7 @@ for normal keywords. In addition it accepts these keywords: ### i18n.itstool_join() This joins translations into a XML file using `itstool`. See -[[custom_tgt]] +[[custom_target]] for normal keywords. In addition it accepts these keywords: * `output`: same as `custom_target` but only accepts one item |