Sat Apr 4 07:46:24 2020 UTC ()
duktape: Capitalize ECMAScript and JavaScript


(ryoon)
diff -r1.1 -r1.2 pkgsrc/lang/duktape/DESCR

cvs diff -r1.1 -r1.2 pkgsrc/lang/duktape/DESCR (expand / switch to unified diff)

--- pkgsrc/lang/duktape/DESCR 2016/05/05 03:59:48 1.1
+++ pkgsrc/lang/duktape/DESCR 2020/04/04 07:46:24 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1Duktape is an embeddable Ecmascript E5/E5.1 engine with a focus on 1Duktape is an embeddable ECMAScript E5/E5.1 engine with a focus on
2portability and compact footprint. By integrating Duktape into your 2portability and compact footprint. By integrating Duktape into your
3C/C++ program you can easily extend its functionality through 3C/C++ program you can easily extend its functionality through
4scripting. You can also build the main control flow of your program 4scripting. You can also build the main control flow of your program
5in Ecmascript and use fast C code functions to do heavy lifting. 5in ECMAScript and use fast C code functions to do heavy lifting.
6 6
7The terms Ecmascript and Javascript are often considered more or less 7The terms ECMAScript and JavaScript are often considered more or less
8equivalent, although Javascript and its variants are technically just 8equivalent, although JavaScript and its variants are technically just
9one environment where the Ecmascript language is used. The line 9one environment where the ECMAScript language is used. The line
10between the two is not very clear in practice: even non-browser 10between the two is not very clear in practice: even non-browser
11Ecmascript environments often provide some browser-specific built-ins. 11ECMAScript environments often provide some browser-specific built-ins.
12Duktape is no exception, and provides the commonly used print() and 12Duktape is no exception, and provides the commonly used print() and
13alert() built-ins. Even so, we use the term Ecmascript throughout to 13alert() built-ins. Even so, we use the term ECMAScript throughout to
14refer to the language implemented by Duktape. 14refer to the language implemented by Duktape.