From 871a2ae0504e67d6c88ba1699d90d696bb014a8e Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Sun, 21 Sep 2025 23:28:07 +0800 Subject: [PATCH] c ffi document fixes for c_short.md There is no reference to `char` in c_short.md --- library/core/src/ffi/c_short.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/core/src/ffi/c_short.md b/library/core/src/ffi/c_short.md index 3d1e53d1325f..29415129b50a 100644 --- a/library/core/src/ffi/c_short.md +++ b/library/core/src/ffi/c_short.md @@ -1,5 +1,3 @@ Equivalent to C's `signed short` (`short`) type. This type will almost always be [`i16`], but may differ on some esoteric systems. The C standard technically only requires that this type be a signed integer with at least 16 bits; some systems may define it as `i32`, for example. - -[`char`]: c_char