* Bug #12836 fixed - There was an error in strcmpi documentation.
+* Bug #12839 fixed - Typo fixes in Core doc: getVariablesOnStack().
+
* Bug #12840 fixed - Fix typo in number_properties.xml.
* Bug #12852 fixed - Visual Studio 2012 SDK configuration is incorrect.
<refsection>
<title>Description</title>
<para>
- <literal>getvariablesonstack()</literal> returns in <literal>s</literal> variable names on scilab stack.
+ <literal>s = getvariablesonstack()</literal> returns in <literal>s</literal> the variable names on Scilab stack.
</para>
<para>
- <literal>getvariablesonstack('local')</literal> returns local variables on scilab stack.
+ <literal>getvariablesonstack('local')</literal> returns the local variables on Scilab stack.
</para>
<para>
- <literal>getvariablesonstack('global')</literal> returns global variables on scilab stack.
+ <literal>getvariablesonstack('global')</literal> returns the global variables on Scilab stack.
</para>
<para>Variables are sorted by alphabetical order.</para>
</refsection>
<refsection>
<title>Examples</title>
- <programlisting role="example"><![CDATA[
+ <programlisting role="example"><![CDATA[
getvariablesonstack()
getvariablesonstack('local')
getvariablesonstack('global')