From 2f9f4dba8570fd049d2f3c5abfcdbd2a0c85c8f7 Mon Sep 17 00:00:00 2001 From: Sung-Jae Lee Date: Mon, 29 Jun 2015 19:42:18 +0900 Subject: [PATCH] Fix invalid link in 'Internals' page. JerryScript-DCO-1.0-Signed-off-by: Sung-Jae Lee sjlee@mail.com --- 04.internals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04.internals.md b/04.internals.md index f1c08443d..efb968084 100644 --- a/04.internals.md +++ b/04.internals.md @@ -10,7 +10,7 @@ permalink: /internals/ # High-Level Design ![High-Level Design]({{ site.baseurl }}/img/engines_high_level_design.jpg){: class="thumbnail center-block img-responsive" } -On the diagram above is shown interaction of major components of software system: Parser and Runtime. Parser performs translation of input ECMAScript application into the byte-code with the specified format (refer to [Bytecode](/internals/#byte-code) and [Parser](/internals/#parser) page for details). Prepared bytecode is executed by Runtime engine that performs interpretation (refer to [Virtual Machine](/internals/#virtual-machine) and [ECMA](/internals/#ECMA) pages for details). +On the diagram above is shown interaction of major components of software system: Parser and Runtime. Parser performs translation of input ECMAScript application into the byte-code with the specified format (refer to [Bytecode](#byte-code) and [Parser](#parser) page for details). Prepared bytecode is executed by Runtime engine that performs interpretation (refer to [Virtual Machine](#virtual-machine) and [ECMA](#ecma) pages for details). # Parser