From 4fda623f513bdf32692ce86084e630c95afbba2d Mon Sep 17 00:00:00 2001 From: Alexander Iljin Date: Sat, 21 Jan 2017 00:59:39 +0300 Subject: [PATCH] charts.lines: fix some comments --- lines/lines.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lines/lines.factor b/lines/lines.factor index 6418b94084..782b0498fb 100644 --- a/lines/lines.factor +++ b/lines/lines.factor @@ -25,13 +25,13 @@ ALIAS: y second : search-first? ( elt seq -- index elt exact-match? ) dupd search-first rot [ dup first ] dip = ; -! Return a slice of the seq with all elements equal elt to the +! Return a slice of the seq with all elements equal to elt to the ! left of the index, plus one that's not equal, if requested. :: adjusted-tail-slice ( n elt plus-one? seq -- slice ) n seq elt first '[ first _ = not ] find-last-from drop seq swap [ plus-one? [ 1 + ] unless tail-slice ] when* ; -! Return a slice of the seq with all elements equal elt to the +! Return a slice of the seq with all elements equal to elt to the ! right of the index, plus one that's not equal, if requested. :: adjusted-head-slice ( n elt plus-one? seq -- slice ) n seq elt first '[ first _ = not ] find-from drop seq swap