From 99b53fdcbb758095ad881be83f914056969593c5 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Sun, 14 Jun 2015 23:22:49 +0300 Subject: [PATCH] Update development guide --- 05.dev-guide.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/05.dev-guide.md b/05.dev-guide.md index c6ca527c9..08528e380 100644 --- a/05.dev-guide.md +++ b/05.dev-guide.md @@ -228,7 +228,7 @@ print_value (const jerry_api_value_t * value_p) ## Simple JavaScript shell -Now we have build blocks to construct JavaScript shell. +Now all build blocks, necessary to construct JavaScript shell, are ready. Shell operation can be described with following loop: @@ -296,4 +296,9 @@ main (int argc, char * argv[]) { } ``` +The application inputs commands and evaluates them, one after another. + + +## Further steps + For further API description, please look at [Embedding API](/API).