summaryrefslogtreecommitdiff
path: root/project/templates/grasp.html
diff options
context:
space:
mode:
Diffstat (limited to 'project/templates/grasp.html')
-rw-r--r--project/templates/grasp.html19
1 files changed, 9 insertions, 10 deletions
diff --git a/project/templates/grasp.html b/project/templates/grasp.html
index 54e625a..c340483 100644
--- a/project/templates/grasp.html
+++ b/project/templates/grasp.html
@@ -52,18 +52,17 @@ uses a subset of the DOT graph description language for the file format, to enab
as well as relatively easy conversion to a graph image. If a format that more readily converts to a
comprehensible graph image is found, a parser for it may be added.</p>
-<p>The above example is recorded as follows:
+<p>The above example is recorded as follows:</p>
<code>
- digraph {
- 1 [label="puts"]
- 2 [label="grasp:main"]
- 3 [label="Hello world!"]
-
- 1 -> 2 [label="name"]
- 1 -> 3 [label="in"]
- }
+digraph {
+ 1 [label="puts"]
+ 2 [label="grasp:main"]
+ 3 [label="Hello world!"]
+
+ 1 -> 2 [label="name"]
+ 1 -> 3 [label="in"]
+}
</code>
-</p>
<p>Source code is available <a href="/cgit/cgit.cgi/esoteric.git/" target="_blank">here</a>.</p>