docs: cleanup some article titles that can be strings.

factor-shell
John Benediktsson 2017-10-25 11:11:44 -07:00
parent 013adec055
commit 88eff49c13
4 changed files with 8 additions and 9 deletions

View 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"

View 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"

View 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"

View 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"