]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/brainfuck/brainfuck-docs.factor
help: add more bold table headings.
[factor.git] / extra / brainfuck / brainfuck-docs.factor
index f5d83785d96490f9fa060e2ad9a75b59fddb3c33..89ccf8c6836daa7bcfd214abe53fa49c76c5cbd1 100644 (file)
@@ -16,7 +16,7 @@ HELP: run-brainfuck
     "The eight language commands, each consisting of a single character, "
     "are the following:\n"
     { $table
-        { "Character" "Meaning" }
+        { { $strong "Character" } { $strong "Meaning" } }
         { ">" "increment the data pointer (to point to the next cell to the right)." }
         { "<" "decrement the data pointer (to point to the next cell to the left)." }
         { "+" "increment (increase by one) the byte at the data pointer." }
@@ -31,7 +31,7 @@ HELP: run-brainfuck
     "substitutions, assuming ptr is of type unsigned char* and has been "
     "initialized to point to an array of zeroed bytes:\n"
     { $table
-        { "Character" "C equivalent" }
+        { { $strong "Character" } { $strong "C equivalent" } }
         { ">" "++ptr;" }
         { "<" "--ptr;" }
         { "+" "++*ptr;" }