Skip to content

Commit 21d2cbb

Browse files
Correct code block syntax in changelog.md
Fixed code block formatting in changelog.
1 parent e7b0966 commit 21d2cbb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/changelog.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ This is also supported for container types, like vecs and sets. You can also use
7171

7272
For example:
7373

74-
````python
74+
```python
7575
>>> from egglog import *
7676
>>> Vec(i64(1), i64(2))[0]
7777
Vec(1, 2)[0]
@@ -81,7 +81,7 @@ Vec(1, 2)[0]
8181
[i64(1), i64(2)]
8282
>>> Rational(1, 2).eval()
8383
Fraction(1, 2)
84-
>>>
84+
```
8585

8686

8787
You can also manually set the e-graph to use, instead of it having to create a new one, with the `egraph.set_current` context manager:
@@ -542,4 +542,3 @@ We also change the `PyObject` primitive to behave similarly. Instead of calling
542542
This release adds support for a high level API for e-graphs.
543543

544544
There is an examples of the high level API in the [tutorials](tutorials/getting-started).
545-
````

0 commit comments

Comments
 (0)