From 632961798f1fe8eca49139548cb3ebd79bed77bc Mon Sep 17 00:00:00 2001 From: Alexander Iljin Date: Wed, 24 May 2017 20:12:44 +0300 Subject: [PATCH] alien.data-docs: add a missing space between sentences --- basis/alien/data/data-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/alien/data/data-docs.factor b/basis/alien/data/data-docs.factor index 7fb64d8907..153855bb1d 100644 --- a/basis/alien/data/data-docs.factor +++ b/basis/alien/data/data-docs.factor @@ -184,7 +184,7 @@ $nl "Using C string types triggers automatic conversions:" { $list { - "Passing a Factor string to a C function expecting a " { $link c-string } " allocates a " { $link byte-array } " in the Factor heap; the string is then encoded to the requested encoding and a raw pointer is passed to the function." + "Passing a Factor string to a C function expecting a " { $link c-string } " allocates a " { $link byte-array } " in the Factor heap; the string is then encoded to the requested encoding and a raw pointer is passed to the function. " "Passing an already encoded " { $link byte-array } " also works and performs no conversion." } { "Returning a C string from a C function allocates a Factor string in the Factor heap; the memory pointed to by the returned pointer is then decoded with the requested encoding into the Factor string." }