From 3e1a60351d58645a066b39d82c259df482a2c145 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sun, 23 Sep 2018 17:20:24 +0200 Subject: [PATCH] docs/internals: fix hyperlink --- docs/internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals.rst b/docs/internals.rst index 766a0a4d8..a4f519552 100644 --- a/docs/internals.rst +++ b/docs/internals.rst @@ -55,7 +55,7 @@ Differences from ``go`` enables far more optimization opportunities. In the future, an option should be added for incremental compilation during edit-compile-test cycles. * Interfaces are always represented as a ``{typecode, value}`` pair. `Unlike - Go `, TinyGo will not precompute a + Go `_, TinyGo will not precompute a list of function pointers for fast interface method calls. Instead, all interface method calls are looked up where they are used. This may sound expensive, but it avoids memory allocation at interface creation.