rename TCStrings to TCStringList

This commit is contained in:
Dustin J. Mitchell 2022-02-09 23:37:32 +00:00
parent 8caf442e3f
commit 28a4599a6a
6 changed files with 43 additions and 40 deletions

View file

@ -31,9 +31,9 @@ use std::str::Utf8Error;
///
/// Unless specified otherwise, TaskChampion functions take ownership of a `*TCString` when it is
/// given as a function argument, and the pointer is invalid when the function returns. Callers
/// must not use or free TCStrings after passing them to such API functions.
/// must not use or free TCStringList after passing them to such API functions.
///
/// TCStrings are not threadsafe.
/// TCString is not threadsafe.
#[derive(PartialEq, Debug)]
pub enum TCString<'a> {
CString(CString),