From 44248b8c4b3aea13914a56636624134577a47bec Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Thu, 31 Jan 2019 01:14:47 -0800 Subject: [PATCH] Update interoperability.md --- docs/interoperability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interoperability.md b/docs/interoperability.md index 81c1db2..d5b9039 100644 --- a/docs/interoperability.md +++ b/docs/interoperability.md @@ -102,7 +102,7 @@ When adding a Variable _([Script.Add](https://godoc.org/github.com/d5/tengo/scri ### User Types -One can easily add and use customized value types in Tengo code by implementing [Object](https://godoc.org/github.com/d5/tengo/objects#Object) interface. Tengo runtime will treat the user types exactly in the same way it does to the runtime types with no performance overhead. See [Tengo Objects](https://github.com/d5/tengo/blob/master/docs/objects.md) for more details. +Users can add and use a custom user type in Tengo code by implementing [Object](https://godoc.org/github.com/d5/tengo/objects#Object) interface. Tengo runtime will treat the user types in the same way it does to the runtime types with no performance overhead. See [Object Types](https://github.com/d5/tengo/blob/master/docs/objects.md) for more details. ### Importing Scripts