From 4fccc7126d4bf478eaf76dde5025c5f8248a8526 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Mon, 8 Dec 2008 21:49:26 -0600 Subject: [PATCH] Fix alien.strings docs --- basis/alien/strings/strings-docs.factor | 4 ---- 1 file changed, 4 deletions(-) diff --git a/basis/alien/strings/strings-docs.factor b/basis/alien/strings/strings-docs.factor index 3dc358336c..19c29e613e 100644 --- a/basis/alien/strings/strings-docs.factor +++ b/basis/alien/strings/strings-docs.factor @@ -31,10 +31,6 @@ HELP: string>symbol $nl "On Windows CE, symbols are represented as UCS2 strings, and on all other platforms they are ASCII strings." } ; -HELP: utf16n -{ $class-description "The encoding descriptor for UTF-16 without a byte order mark in native endian order. This is useful mostly for FFI calls which take input of strings of the type wchar_t*" } -{ $see-also "encodings-introduction" } ; - ARTICLE: "c-strings" "C strings" "C string types are arrays with shape " { $snippet "{ \"char*\" encoding }" } ", where " { $snippet "encoding" } " is an encoding descriptor. The type " { $snippet "\"char*\"" } " is an alias for " { $snippet "{ \"char*\" utf8 }" } ". See " { $link "encodings-descriptors" } " for information about encoding descriptors." $nl