Git commit 94d69704998fe5ed2ffeb279a8083538cf5e24d3 by Yuri Chornoivan. Committed on 09/05/2014 at 14:32. Pushed by yurchor into branch 'master'.
Fix typo, update docs M +17 -2 doc/index.docbook M +1 -1 src/backends/lua/luabackend.cpp http://commits.kde.org/cantor/94d69704998fe5ed2ffeb279a8083538cf5e24d3 diff --git a/doc/index.docbook b/doc/index.docbook index 5d7a9a0..9bf34f5 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -30,8 +30,8 @@ </copyright> <legalnotice>&FDLNotice;</legalnotice> -<date>2013-10-27</date> -<releaseinfo>0.5 (&kde; 4.12)</releaseinfo> +<date>2014-05-09</date> +<releaseinfo>0.5 (&kde; 4.14)</releaseinfo> <abstract> <para> @@ -48,6 +48,7 @@ nice worksheet view to other Free Software Math packages. <keyword>Cantor</keyword> <keyword>Sage</keyword> <keyword>Python</keyword> +<keyword>Lua</keyword> <keyword>Scilab</keyword> <keyword>R</keyword> <keyword>Maxima</keyword> @@ -225,6 +226,20 @@ to scientific programming. </para> </listitem> </varlistentry> + <varlistentry> + <term>Lua:</term> + <listitem> + <para> + Lua is a fast and lightweight scripting language, with a simple procedural syntax. There are several libraries in Lua aimed at math and science. + </para> + <para> + See <ulink url="http://www.lua.org/">http://www.lua.org/</ulink> for more information. + </para> + <para> + This backend supports <ulink url="http://luajit.org/">luajit 2</ulink>. + </para> + </listitem> + </varlistentry> </variablelist> </para> </sect1> diff --git a/src/backends/lua/luabackend.cpp b/src/backends/lua/luabackend.cpp index 82a70b3..9a2ab43 100644 --- a/src/backends/lua/luabackend.cpp +++ b/src/backends/lua/luabackend.cpp @@ -70,7 +70,7 @@ KUrl LuaBackend::helpUrl() const QString LuaBackend::description() const { - return i18n("<p> Lua is a fast and lightweight scripting language, with a simple simple procedural syntax." \ + return i18n("<p> Lua is a fast and lightweight scripting language, with a simple procedural syntax." \ " There are several libraries in Lua aimed at math and science.</p>" "<p>This backend supports luajit 2.</p>"); }
