]> gitweb.factorcode.org Git - factor.git/commitdiff
copyright
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 25 Sep 2008 07:06:49 +0000 (02:06 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 25 Sep 2008 07:06:49 +0000 (02:06 -0500)
extra/html/parser/analyzer/analyzer.factor

index 5690ae32f2409bf049563a030feefd4c0338d398..47cd4dbbc62397e0ef7f8394ee81d66e235a9210 100755 (executable)
@@ -1,3 +1,5 @@
+! Copyright (C) 2008 Doug Coleman.
+! See http://factorcode.org/license.txt for BSD license.
 USING: assocs html.parser kernel math sequences strings ascii
 arrays generalizations shuffle unicode.case namespaces make
 splitting http accessors io combinators http.client urls
@@ -17,7 +19,6 @@ TUPLE: link attributes clickable ;
     '[ _ [ second @ ] find-from rot drop swap 1+ ]
     [ f 0 ] 2dip times drop first2 ; inline
 
-
 : find-first-name ( str vector -- i/f tag/f )
     [ >lower ] dip [ name>> = ] with find ; inline