]> gitweb.factorcode.org Git - factor.git/commitdiff
license rename: fix the rest of it.
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 17 Mar 2016 09:36:34 +0000 (02:36 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 17 Mar 2016 09:36:34 +0000 (02:36 -0700)
basis/io/files/info/unix/unix-docs.factor
basis/io/mmap/mmap-docs.factor
basis/tools/deploy/test/19/19.factor
core/checksums/checksums-docs.factor

index 01ee8f4113cec892fbc14e4654bc815eacaff755..dc87f0e2a20e97d9f4c4e0b2bd7b7b2759840082 100644 (file)
@@ -103,11 +103,11 @@ HELP: set-file-permissions
 { $description "Sets the file permissions for a given file with the supplied Unix permissions integer." }
 { $examples "Using the traditional octal value:"
     { $code "USING: io.files.info.unix kernel ;"
-        "\"resource:license.txt\" 0o755 set-file-permissions"
+        "\"resource:LICENSE.txt\" 0o755 set-file-permissions"
     }
     "Higher-level, setting named bits:"
     { $code "USING: io.files.info.unix kernel literals ;"
-    "\"resource:license.txt\""
+    "\"resource:LICENSE.txt\""
     "flags{ USER-ALL GROUP-READ GROUP-EXECUTE OTHER-READ OTHER-EXECUTE }"
     "set-file-permissions"
     }
index 22943d3c014baee2999c3b5e657a891c7f0597cd..0b3082368f2ffc3bf34d24fac3fa0ad2e3c5e9b7 100644 (file)
@@ -49,7 +49,7 @@ HELP: with-mapped-array
     { $unchecked-example
         "USING: alien.c-types io.mmap prettyprint specialized-arrays ;"
         "SPECIALIZED-ARRAY: uint"
-"resource:license.txt\" uint [
+"resource:LICENSE.txt\" uint [
     [ . ] each
 ] with-mapped-array"
         ""
index 203ba3d867a0a8aecac003e766480df20f55eb63..6b0a51209f8e6094ff7e8c587aac8b5f7d54f469 100644 (file)
@@ -4,6 +4,6 @@ USING: io io.files io.encodings.ascii ;
 IN: tools.deploy.test.19
 
 : main ( -- )
-    "vocab:LICENSE.txt" ascii file-contents write ;
+    "resource:LICENSE.txt" ascii file-contents write ;
 
 MAIN: main
index b4950c5deb00fab4f5c31b2263c34326edc580b4..4508d861f168c842b164e2e377fb913aaac144c2 100644 (file)
@@ -48,7 +48,7 @@ HELP: checksum-file
 { $examples
     { $example
         "USING: checksums checksums.crc32 prettyprint ;"
-        "\"resource:license.txt\" crc32 checksum-file ."
+        "\"resource:LICENSE.txt\" crc32 checksum-file ."
         "B{ 100 139 199 92 }"
     }
 } ;