]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rot13/rot13.factor
Fixes #2966
[factor.git] / extra / rot13 / rot13.factor
index c8f08bcf30a1cfbcba5804c21a1f2895ac640e24..443d9d59d80c4ed845c2fdd377a2501b447defce 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2006 Daniel Ehrenberg
-! See http://factorcode.org/license.txt for BSD license.
-USING: kernel math sequences strings io combinators ascii ;
+! See https://factorcode.org/license.txt for BSD license.
+USING: kernel math sequences io combinators ascii ;
 IN: rot13
 
 : rotate ( ch base -- ch ) [ - 13 + 26 mod ] [ + ] bi ;