]> jfr.im git - irc/thales.git/commitdiff
Fix overflows in documentation
authorDmitry Bogatov <redacted>
Sat, 15 Feb 2014 18:09:50 +0000 (22:09 +0400)
committerDmitry Bogatov <redacted>
Sat, 15 Feb 2014 18:09:50 +0000 (22:09 +0400)
doc/examples/overview-fixed.scm
doc/examples/overview.scm
doc/thales.texi

index 1f176b0affcf34e45486a16551981fce1cb61d48..f1807728e2ef829abca768ec8e725b18c57b45bf 100644 (file)
@@ -6,9 +6,13 @@
 (use-modules (thales seal))
 
 (sealed mystic
-       (1 2 *** (- 4 1))       ;; Short-cut for most common case. Expected form is evaluated
+       (1 2 *** (- 4 1))       ;; Short-cut for most common case.
+                               ;; Expected form is evaluated
+
        (1 2 *+* 3)             ;; Same. Expected form is not evaluated.
-       ((& 5 6) => 11)         ;; Full form. & is bound to function beeing testing.
+       ((& 5 6) => 11)         ;; Full form.
+                               ;; & is bound to function beeing testing.
+
        ((mystic 3 4) => 7)     ;; Or it can be written in full
        (1 2 *** 3))            ;; This will no more fail
 
@@ -23,4 +27,3 @@
 (define (not-exported x y)
     "Some not-exported function"
     (/ y x))
-
index 744300cb6985edd8b6010eeb2b23b9d0851d4089..051d4c232037e39b83610f42572d93960d08d437 100644 (file)
@@ -5,9 +5,13 @@
 (use-modules (thales seal))
 
 (sealed mystic
-       (1 2 *** (- 4 1))       ;; Short-cut for most common case. Expected form is evaluated
+       (1 2 *** (- 4 1))       ;; Short-cut for most common case.
+                               ;; Expected form is evaluated
+
        (1 2 *+* 3)             ;; Same. Expected form is not evaluated.
-       ((& 5 6) => 11)         ;; Full form. & is bound to function beeing testing.
+       ((& 5 6) => 11)         ;; Full form.
+                               ;; & is bound to function beeing testing.
+
        ((mystic 3 4) => 7)     ;; Or it can be written in full
        (1 2 ** 4))             ;; This will fail and abort compilation
 
index e85178344935db77a8094dfced2c7b5894b47cca..13cd55171a6a1bbdb1ba458f6d8ccdec53260d00 100644 (file)
@@ -4,7 +4,7 @@
 @settitle GNU Thales
 @c %**end of header
 @copying
-Macroses for GNU Guile for performing unit-testing and checking backward- and forward- compability..
+Macroses for GNU Guile for unit-testing and checking compability.
 
 Copyright @copyright{} 2014
 
@@ -28,7 +28,7 @@ The document was typeset with
 
 @titlepage
 @title GNU Thales
-@subtitle Macroses for GNU Guile for performing unit-testing and checking backward- and forward- compability.
+@subtitle Macroses for GNU Guile unit-testing and checking compability.
 @author  Dmitry Bogatov <KAction@@gnu.org>
 @page
 @vskip 0pt plus 1filll
@@ -71,8 +71,8 @@ Here is simple example, with overview of main use cases:
 After we run @code{guild compile overview.scm} and assuming, that
 @var{GUILE_LOAD_PATH} is set properly.
 @example
-;;; note: source file /home/kaction/work/thales/doc/examples/overview.scm
-;;;       newer than compiled /home//kaction/.cache/guile/ccache/2.0-LE-8-2.0/share/home/kaction/work/thales/doc/examples/overview.scm.go
+;;; note: source file /work/thales/doc/examples/overview.scm
+;;;       newer than compiled <cutted-to-fit-page>
 Checking seals with & = mystic...
 Compilation aborted: seal broken when evaluating
 (mystic 1 2)