aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2018-09-23 17:20:24 +0200
committerAyke van Laethem <[email protected]>2018-09-23 17:20:24 +0200
commit3e1a60351d58645a066b39d82c259df482a2c145 (patch)
tree4022c32d4639aedeb2fd85b393fb3d7e66583858 /docs
parent7c597c910f17dcee052f236f6ee1838205b0a01f (diff)
downloadtinygo-3e1a60351d58645a066b39d82c259df482a2c145.tar.gz
tinygo-3e1a60351d58645a066b39d82c259df482a2c145.zip
docs/internals: fix hyperlink
Diffstat (limited to 'docs')
-rw-r--r--docs/internals.rst2
1 files changed, 1 insertions, 1 deletions
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 <https://research.swtch.com/interfaces>`, TinyGo will not precompute a
+ Go <https://research.swtch.com/interfaces>`_, 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.