Skip to content

Commit 0f30adb

Browse files
authored
Minor syntactic consistency fix (WebAssembly#68)
Change pseudo equality operator from `==` to `=`.
1 parent eee3005 commit 0f30adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

document/core/appendix/algorithm.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Equivalence and subtyping checks can be defined on these types.
6767
func matches(t1 : val_type, t2 : val_type) : bool =
6868
return
6969
(is_num t1 && is_num t2 && t1 = t2) ||
70-
(is_vec t1 && is_vec t2 && t1 == t2) ||
70+
(is_vec t1 && is_vec t2 && t1 = t2) ||
7171
(is_ref t1 && is_ref t2 && matches_ref(t1, t2)) ||
7272
t1 = Bot
7373

0 commit comments

Comments
 (0)