Skip to content

Commit 8d68c87

Browse files
authored
Add missing semicolon in docs (egraphs-good#117)
1 parent 3fcbda0 commit 8d68c87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tutorials/_02_getting_started.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ egraph.rebuild();
127127
128128
// now we can find a match since a = b
129129
let matches = pat.search(&egraph);
130-
assert!(!matches.is_empty())
130+
assert!(!matches.is_empty());
131131
```
132132

133133

0 commit comments

Comments
 (0)