Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions doc/architectural/central-data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ in the symbol-table for their definitions.
A goto program is a sequence of GOTO instructions (`goto_instructiont`). For
details of the `goto_programt` class itself see the documentation in
[`goto_program.h`](../../src/goto-programs/goto_program.h). For further details
of the life cycle of goto programs see
[`src/goto-programs/README.md`](https://github.com/diffblue/cbmc/blob/develop/src/goto-programs/README.md).
of the life cycle of goto programs see \ref goto-programs "goto programs"

An instruction (`goto_instructiont`) is a triple (an element with three subcomponents),
describing a GOTO level instruction with the following 3 component subtypes,
Expand Down
2 changes: 1 addition & 1 deletion doc/doxygen-root/doxygen-markdown/markdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ for file in $FILES; do
# lines is unescaped using sed in order to fix doxygen tags, which are
# broken by pandoc.
pandoc --read=gfm --write=gfm --wrap=none --filter=mermaid-filter $tmp |
$BINDIR/pandoc-codeblock-repair.sh | sed 's/^\\\\/\\/' > $file
$BINDIR/pandoc-codeblock-repair.sh | sed 's/\\\\ref\s/\\ref /;s/^\\\\/\\/' > $file
done

cprovers=$(find . -name cprover-manual)
Expand Down