Skip to content

Commit ff916c6

Browse files
authored
Merge pull request #44 from yotamofek/patch-1
Fix docs for `WideCString`(s)
2 parents 23bddba + 7e412ac commit ff916c6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ucstring.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,12 +1653,12 @@ impl core::fmt::Debug for U32CString {
16531653
}
16541654
}
16551655

1656-
/// Alias for `U16String` or `U32String` depending on platform. Intended to match typical C
1656+
/// Alias for [`U16CString`] or [`U32CString`] depending on platform. Intended to match typical C
16571657
/// `wchar_t` size on platform.
16581658
#[cfg(not(windows))]
16591659
pub type WideCString = U32CString;
16601660

1661-
/// Alias for `U16String` or `U32String` depending on platform. Intended to match typical C
1661+
/// Alias for [`U16CString`] or [`U32CString`] depending on platform. Intended to match typical C
16621662
/// `wchar_t` size on platform.
16631663
#[cfg(windows)]
16641664
pub type WideCString = U16CString;

0 commit comments

Comments
 (0)