Skip to content

Commit

Permalink
fix missing backquote, remove space in literal
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo committed Dec 20, 2018
1 parent c6431a4 commit 4593658
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UsersGuide/interface.mos
Expand Up @@ -19,7 +19,7 @@ protected
String doc1 = doc[1];
algorithm
out := \"\\n.. _\" + strs[end] + \" :\\n\\n\" + strs[end] + \"\\n\" + sum(\"^\" for c in 1:stringLength(strs[end])) + \"\\n\";
out := out + sum(\"`` \" + trim(l) + \"``\\n\" for l in OpenModelica.Scripting.strtok(OpenModelica.Scripting.getClassComment(cl), \"\\n\"));
out := out + sum(\"``\" + trim(l) + \"``\\n\" for l in OpenModelica.Scripting.strtok(OpenModelica.Scripting.getClassComment(cl), \"\\n\"));
OpenModelica.Scripting.writeFile(\"tmp/interface.inc.tmp\", doc1, false);
// Disable wrapping in order to fix some modelica:// links
OpenModelica.Scripting.system(\"pandoc --wrap=none -t rst -f html -o tmp/interface.inc.tmp.rst tmp/interface.inc.tmp\");
Expand Down
2 changes: 1 addition & 1 deletion UsersGuide/source/technical_details.rst
Expand Up @@ -46,7 +46,7 @@ dataInfo
Is an n x 4 integer matrix containing information for each variable (in the
same order as the name and description matrices).

- ``dataInfo(i,1)`` is ``1`` or ``2``, saying if variable i is stored in the data_1 or data_2 matrix. If it is ``0`, it is the abscissa (time variable).
- ``dataInfo(i,1)`` is ``1`` or ``2``, saying if variable i is stored in the data_1 or data_2 matrix. If it is ``0``, it is the abscissa (time variable).
- ``dataInfo(i,2)`` contains the index in the data_1 or data_2 matrix.
The index is 1-based and may contain several variables pointing to the same row (alias variables).
A negative value means that the variable is a negated alias variable.
Expand Down

0 comments on commit 4593658

Please sign in to comment.