aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-04-09 16:55:55 +0200
committerThomas White <taw@physics.org>2023-04-09 16:55:55 +0200
commit5eeea3bbdcd1fa991fe186eb691584842112b967 (patch)
treec6973a5fc97301dbc45afd54742812bb7d1805d9
parent7925b36c6834e08968217c7caa489d6906af7a22 (diff)
Tidy up docs
-rw-r--r--docs/basic-control.rst2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/basic-control.rst b/docs/basic-control.rst
index 02370f8..a0847d1 100644
--- a/docs/basic-control.rst
+++ b/docs/basic-control.rst
@@ -74,7 +74,6 @@ attribute from the Guile REPL, the values will be stored in the programmer
state. You can examine the contents using ``state-source``, which returns
the Scheme code corresponding to the state's contents::
- (state-source programmer-state)
scheme@(guile-user)> (state-source programmer-state)
$6 = (lighting-state (at ledLL colour (cmy 77.0 100.0 100.0)) (at ledRR colour (cmy 77.0 100.0 100.0)) (at washR intensity 85) (at washL intensity 85) (at ledLL intensity 40) (at ledRR intensity 40) (at washM intensity 85))
scheme@(guile-user)>
@@ -83,7 +82,6 @@ You can also use ``print-state``, which just pretty-prints the output of
``state-source``. To reduce typing, you can use ``ps`` as a synonym for
``programmer-state``::
- (print-state ps)
scheme@(guile-user)> (print-state ps)
(lighting-state
(at ledLL colour (cmy 77.0 100.0 100.0))