]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/sorting/title/title.factor
Resolved merge.
[factor.git] / basis / sorting / title / title.factor
index dbdbf8a8fbd89f7afe0d879b2913352344dcd703..b9a46c41fcca37da47c49b1a99f2b27711e6bd8b 100644 (file)
@@ -4,4 +4,7 @@ USING: sorting.functor regexp kernel accessors sequences
 unicode.case ;
 IN: sorting.title
 
-<< "title" [ >lower dup R/ ^(the|a|an|el|la|los|las|il) / first-match [ to>> tail-slice ] when* ] define-sorting >>
+<< "title" [
+    >lower dup R/ ^(the|a|an|el|la|los|las|il) / first-match
+    [ to>> tail-slice ] when*
+] define-sorting >>