standardize on decref instead of deinit for name

This commit is contained in:
Brendan Hansknecht 2023-03-11 07:33:42 -08:00
parent 440c0518f1
commit e32c5f6514
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
11 changed files with 181 additions and 185 deletions

View file

@ -134,7 +134,7 @@ pub fn main() u8 {
// stdout the result
stdout.print("{s}", .{callresult.asSlice()}) catch unreachable;
callresult.deinit();
callresult.decref();
stderr.print("runtime: {d:.3}ms\n", .{seconds * 1000}) catch unreachable;