Skip to content

Commit bd07122

Browse files
Fix a typo (#1192)
1 parent c2a75f1 commit bd07122

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/site/embedding/calling-wren-from-c.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ method is called. That's how many dynamic languages work.
4848

4949
But, as you can imagine, that's pretty slow. So, instead, Wren does as much of
5050
that work at compile time as it can. When it's compiling the above code to
51-
bytecode, it takes that method signature a converts it to a *method symbol*, a
52-
number that uniquely identifes that method. That's the only part of the process
53-
that requires treating a signature as a string.
51+
bytecode, it takes that method signature and converts it to a *method symbol*,
52+
a number that uniquely identifes that method. That's the only part of the
53+
process that requires treating a signature as a string.
5454

5555
At runtime, the VM just looks for the method *symbol* in the receiver's class's
5656
method table. In fact, the way it's implemented today, the symbol is simply the

0 commit comments

Comments
 (0)