aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/world
diff options
context:
space:
mode:
authorEduardo Julian2021-08-29 18:30:29 -0400
committerEduardo Julian2021-08-29 18:30:29 -0400
commitff537895fe9c24f37a0ce11b640af5d4882571a5 (patch)
treef59778fa4163277d3ca3a1df450af82a401debb3 /stdlib/source/documentation/lux/world
parent1680d4d8bc4046ed4728413f1e7cfd77aa7e84b7 (diff)
Better parameterized type documentation.
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/world/console.lux4
-rw-r--r--stdlib/source/documentation/lux/world/file.lux2
-rw-r--r--stdlib/source/documentation/lux/world/file/watch.lux2
-rw-r--r--stdlib/source/documentation/lux/world/net/http/client.lux2
-rw-r--r--stdlib/source/documentation/lux/world/program.lux2
-rw-r--r--stdlib/source/documentation/lux/world/shell.lux6
6 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/documentation/lux/world/console.lux b/stdlib/source/documentation/lux/world/console.lux
index 80841123d..277bdaa12 100644
--- a/stdlib/source/documentation/lux/world/console.lux
+++ b/stdlib/source/documentation/lux/world/console.lux
@@ -13,14 +13,14 @@
[\\library
["." /]])
-(documentation: /.Console
+(documentation: (/.Console !)
"An interface to console/terminal I/O.")
(documentation: /.write_line
"Writes the message on the console and appends a new-line/line-feed at the end."
[(write_line message console)])
-(documentation: /.Mock
+(documentation: (/.Mock s)
(format "A mock/simulation of a console."
\n "Useful for testing."))
diff --git a/stdlib/source/documentation/lux/world/file.lux b/stdlib/source/documentation/lux/world/file.lux
index 06596ef56..60f0f3633 100644
--- a/stdlib/source/documentation/lux/world/file.lux
+++ b/stdlib/source/documentation/lux/world/file.lux
@@ -18,7 +18,7 @@
(documentation: /.Path
"A path to a file or a directory in a file-system.")
-(documentation: /.System
+(documentation: (/.System !)
"An interface to a file-system.")
(documentation: /.parent
diff --git a/stdlib/source/documentation/lux/world/file/watch.lux b/stdlib/source/documentation/lux/world/file/watch.lux
index e310d8d2d..d381aeb4d 100644
--- a/stdlib/source/documentation/lux/world/file/watch.lux
+++ b/stdlib/source/documentation/lux/world/file/watch.lux
@@ -20,7 +20,7 @@
""
[(also left right)])
-(documentation: /.Watcher
+(documentation: (/.Watcher !)
"Machinery for watching a file-system for changes to files and directories.")
(documentation: /.polling
diff --git a/stdlib/source/documentation/lux/world/net/http/client.lux b/stdlib/source/documentation/lux/world/net/http/client.lux
index 3534ebc6a..3a99183f2 100644
--- a/stdlib/source/documentation/lux/world/net/http/client.lux
+++ b/stdlib/source/documentation/lux/world/net/http/client.lux
@@ -13,7 +13,7 @@
[\\library
["." /]])
-(documentation: /.Client
+(documentation: (/.Client !)
"A HTTP client capable of issuing requests to a HTTP server.")
(template [<name>]
diff --git a/stdlib/source/documentation/lux/world/program.lux b/stdlib/source/documentation/lux/world/program.lux
index d61db573b..43b1a89e7 100644
--- a/stdlib/source/documentation/lux/world/program.lux
+++ b/stdlib/source/documentation/lux/world/program.lux
@@ -13,7 +13,7 @@
[\\library
["." /]])
-(documentation: /.Program
+(documentation: (/.Program !)
"Access to ambient program data and the capacity to exit the program.")
(documentation: /.environment
diff --git a/stdlib/source/documentation/lux/world/shell.lux b/stdlib/source/documentation/lux/world/shell.lux
index 43264c503..cd69d9b12 100644
--- a/stdlib/source/documentation/lux/world/shell.lux
+++ b/stdlib/source/documentation/lux/world/shell.lux
@@ -16,7 +16,7 @@
(documentation: /.Exit
"A program exit code.")
-(documentation: /.Process
+(documentation: (/.Process !)
"The means for communicating with a program/process being executed by the operating system.")
(documentation: /.Command
@@ -25,10 +25,10 @@
(documentation: /.Argument
"A parameter for a command.")
-(documentation: /.Shell
+(documentation: (/.Shell !)
"The means for issuing commands to the operating system.")
-(documentation: /.Mock
+(documentation: (/.Mock s)
"A simulated process.")
(documentation: /.mock