From: Alexander Iljin Date: Wed, 18 Jan 2017 10:53:28 +0000 (+0300) Subject: sequences-docs: add a missing period at the end of a sentence X-Git-Tag: unmaintained~253 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=4fa1103179ba38e4069c0cce1014668416b9dd48 sequences-docs: add a missing period at the end of a sentence --- diff --git a/core/sequences/sequences-docs.factor b/core/sequences/sequences-docs.factor index c64f56ec8c..b0310da2b3 100644 --- a/core/sequences/sequences-docs.factor +++ b/core/sequences/sequences-docs.factor @@ -1181,7 +1181,7 @@ HELP: unclip-last HELP: unclip-last-slice { $values { "seq" sequence } { "butlast-slice" slice } { "last" object } } -{ $description "Outputs a head sequence and the last element of " { $snippet "seq" } "; the head sequence consists of all elements of " { $snippet "seq" } " but the last Unlike " { $link unclip-last } ", this word does not make a copy of the input sequence, and runs in constant time." } ; +{ $description "Outputs a head sequence and the last element of " { $snippet "seq" } "; the head sequence consists of all elements of " { $snippet "seq" } " but the last. Unlike " { $link unclip-last } ", this word does not make a copy of the input sequence, and runs in constant time." } ; HELP: sum { $values { "seq" { $sequence number } } { "n" number } }