-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and improvements based on code review
- Loading branch information
Showing
3 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
This is an RTS document. Here is some code: | ||
|
||
.. code:: cryptol | ||
.. code-block:: cryptol | ||
f1 = 0x01 | ||
Now we are back to text. Here is some more code, this one with options: | ||
|
||
.. code:: cryptol | ||
.. code-block:: cryptol | ||
:linenos: | ||
f2 = 0x02 | ||
Back to text. Now two code blocks together: | ||
|
||
.. code:: cryptol | ||
.. code-block:: cryptol | ||
f3 = 0x03 | ||
.. code:: cryptol | ||
.. code-block:: cryptol | ||
:linenos: | ||
f4 = 0x4 | ||
Now we are going to make an error and we want to get the correct location: | ||
|
||
.. code:: cryptol | ||
.. code-block:: cryptol | ||
f5 = 0x1 + 0x02 |