]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/gray-code/gray-code.factor
Switch to https urls
[factor.git] / extra / rosetta-code / gray-code / gray-code.factor
index 3e60ea089b211a40e62728440e43a33b880db575..ce06dd6bef53f5023ae60d3928107d85ab89b34f 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (c) 2012 Anonymous
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: arrays kernel math math.parser prettyprint ranges sequences ;
 IN: rosetta-code.gray-code
 
-! http://rosettacode.org/wiki/Gray_code
+! https://rosettacode.org/wiki/Gray_code
 
 ! Gray code is a form of binary encoding where transitions
 ! between consecutive numbers differ by only one bit. This is a