]> gitweb.factorcode.org Git - factor.git/commitdiff
docs: cleanup some article titles that can be strings.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 25 Oct 2017 18:11:44 +0000 (11:11 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 25 Oct 2017 18:11:44 +0000 (11:11 -0700)
basis/channels/remote/remote-docs.factor
extra/cpu/8080/8080-docs.factor
extra/semantic-versioning/semantic-versioning-docs.factor
extra/snake-game/snake-game-docs.factor

index e07dbe7b3d54430a6f6059d4d0c7470dd1dbc812..456cceb36b64c0ef8a827ad064a63fd6f7ad7e9c 100644 (file)
@@ -43,7 +43,7 @@ HELP: publish
 }
 { $see-also <remote-channel> unpublish } ;
 
-ARTICLE: { "remote-channels" "remote-channels" } "Remote Channels"
+ARTICLE: "channels.remote" "Remote Channels"
 "Remote channels are channels that can be accessed by other Factor instances. It uses distributed concurrency to serialize and send data between channels."
 $nl
 "To start a remote node, distributed concurrency must have been started. This can be done using " { $link start-server } "."
@@ -61,4 +61,4 @@ $nl
 { $snippet "\"myhost.com\" 9001 <node> 123456 <remote-channel>\n\"hello\" over to" }
 ;
 
-ABOUT: { "remote-channels" "remote-channels" }
+ABOUT: "channels.remote"
index 33a1f2d5e81fcdcfe28606846eeeaad635b18be8..51ec66293db74816d07c42ce203ac0c954cd0775 100644 (file)
@@ -4,7 +4,7 @@ USING: help.markup help.syntax sequences strings cpu.8080.emulator ;
 IN: cpu.8080
 
 
-ARTICLE: { "cpu-8080" "cpu-8080" } "Intel 8080 CPU Emulator"
+ARTICLE: "cpu.8080" "Intel 8080 CPU Emulator"
 "The cpu-8080 library provides an emulator for the Intel 8080 CPU"
 " instruction set. It is complete enough to emulate some 8080"
 " based arcade games." $nl
@@ -13,4 +13,4 @@ ARTICLE: { "cpu-8080" "cpu-8080" } "Intel 8080 CPU Emulator"
 "the " { $link rom-root } " variable to be set to the path "
 "containing the ROM file's." ;
 
-ABOUT: { "cpu-8080" "cpu-8080" }
+ABOUT: "cpu.8080"
index c874623a7f747065b9d654a75a545acc5d8c9f72..ab6814b9b03d0684e4f3bc737c94eaca6dd429f3 100644 (file)
@@ -39,10 +39,10 @@ HELP: version>=
     { "?" boolean }
 } ;
 
-ARTICLE: { "Versioning" "Semantic Versioning" } "Semantic Versioning"
+ARTICLE: "semantic-versioning" "Semantic Versioning"
 { $vocab-link "semantic-versioning" }
 $nl
 { "See " { $url "http://semver.org/" } " for a detailed description of semantic versioning." }
 ;
 
-ABOUT: { "Versioning" "Semantic Versioning" }
+ABOUT: "semantic-versioning"
index fb6baaf406819aa65077b950d2b22f4a4d6bb311..a86bac2fc768ea048751ae4b28a55e69ad124644 100644 (file)
@@ -1,8 +1,7 @@
 USING: help.markup help.syntax ;
 IN: snake-game
 
-ARTICLE: { "snake-game" "about" } "About Snake Game"
-{ $heading "About" }
+ARTICLE: "snake-game" "Snake Game"
 "A remake of the popular Snake game. To start the game:"
 { $code "play-snake-game" }
 { $heading "Keys" }
@@ -22,4 +21,4 @@ ARTICLE: { "snake-game" "about" } "About Snake Game"
 HELP: play-snake-game
 { $description "Starts the game!" } ;
 
-ABOUT: { "snake-game" "about" }
+ABOUT: "snake-game"