2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-20 20:43:23 +00:00

fix: type typo (lol)

This commit is contained in:
sammyette 2024-12-21 18:30:03 -04:00
parent d6eb92f321
commit 094e795d01
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -42,6 +42,6 @@ func TryTable(v Value) (*Table, bool) {
return nil, false
}
func (t *Table) setRefIdx(mlr *Runtime, i idx) {
func (t *Table) setRefIdx(mlr *Runtime, i int) {
t.refIdx = mlr.state.Ref(i)
}