From 716a558ba2dfe19c22e122476b67bdd544d2cd06 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sun, 24 Apr 2022 22:49:23 +0000 Subject: [PATCH] ignore a C code example --- lib/src/string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/string.rs b/lib/src/string.rs index 65c9dfd9e..de090116b 100644 --- a/lib/src/string.rs +++ b/lib/src/string.rs @@ -411,7 +411,7 @@ impl CList for TCStringList { /// /// For example: /// -/// ``` +/// ```text /// char *url = get_item_url(..); // dynamically allocate C string /// tc_task_annotate(task, tc_string_borrow(url)); // TCString created, passed, and freed /// free(url); // string is no longer referenced and can be freed