From cf8a9d3ffcdeb109b200107e81a38de54d83ebba Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 23 Nov 2018 13:31:03 +0000 Subject: [PATCH] docs: Fix URIs in documentation comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Putting the raw URIs in the documentation comments would not link them, and the ‘%20’s in the URIs were being parsed by gtk-doc as symbol references. Fix that by using Markdown to format them correctly as links. Signed-off-by: Philip Withnall --- gio/gmountoperation.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gio/gmountoperation.c b/gio/gmountoperation.c index d59acb3b5..c3f5d25d8 100644 --- a/gio/gmountoperation.c +++ b/gio/gmountoperation.c @@ -548,7 +548,7 @@ g_mount_operation_class_init (GMountOperationClass *klass) * GMountOperation:is-tcrypt-hidden-volume: * * Whether the device to be unlocked is a TCRYPT hidden volume. - * See https://www.veracrypt.fr/en/Hidden%20Volume.html. + * See [the VeraCrypt documentation](https://www.veracrypt.fr/en/Hidden%20Volume.html). * * Since: 2.58 */ @@ -568,7 +568,7 @@ g_mount_operation_class_init (GMountOperationClass *klass) * In this context, a system volume is a volume with a bootloader * and operating system installed. This is only supported for Windows * operating systems. For further documentation, see - * https://www.veracrypt.fr/en/System%20Encryption.html. + * [the VeraCrypt documentation](https://www.veracrypt.fr/en/System%20Encryption.html). * * Since: 2.58 */ @@ -585,7 +585,7 @@ g_mount_operation_class_init (GMountOperationClass *klass) * GMountOperation:pim: * * The VeraCrypt PIM value, when unlocking a VeraCrypt volume. See - * https://www.veracrypt.fr/en/Personal%20Iterations%20Multiplier%20(PIM).html. + * [the VeraCrypt documentation](https://www.veracrypt.fr/en/Personal%20Iterations%20Multiplier%20(PIM).html). * * Since: 2.58 */