Skip to content

Commit 4b23ef3

Browse files
committed
Remove \ldots in docs...
We don't support typeseting this (yet).
1 parent 950e36f commit 4b23ef3

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

mathics/builtin/files.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5090,12 +5090,12 @@ class FileNames(Builtin):
50905090
<dd>Returns a list with the filenames in the current working folder.
50915091
<dt>'FileNames[$form$]'
50925092
<dd>Returns a list with the filenames in the current working folder that matches with $form$.
5093-
<dt>'FileNames[{$form_1$, $form_2$, $\ldots$}]'
5094-
<dd>Returns a list with the filenames in the current working folder that matches with one of $form_1$, $form_2$, $\ldots$.
5095-
<dt>'FileNames[{$form_1$, $form_2$, $\ldots$},{$dir_1$, $dir_2$, $\ldots$}]'
5096-
<dd>Looks into the directories $dir_1$, $dir_2$, $\ldots$.
5097-
<dt>'FileNames[{$form_1$, $form_2$, $\ldots$},{$dir_1$, $dir_2$, $\ldots$}]'
5098-
<dd>Looks into the directories $dir_1$, $dir_2$, $\ldots$.
5093+
<dt>'FileNames[{$form_1$, $form_2$, ...}]'
5094+
<dd>Returns a list with the filenames in the current working folder that matches with one of $form_1$, $form_2$, ....
5095+
<dt>'FileNames[{$form_1$, $form_2$, ...},{$dir_1$, $dir_2$, ...}]'
5096+
<dd>Looks into the directories $dir_1$, $dir_2$, ....
5097+
<dt>'FileNames[{$form_1$, $form_2$, ...},{$dir_1$, $dir_2$, ...}]'
5098+
<dd>Looks into the directories $dir_1$, $dir_2$, ....
50995099
<dt>'FileNames[{$forms$, $dirs$, $n$]'
51005100
<dd>Look for files up to the level $n$.
51015101
</dl>

mathics/builtin/lists.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ class Normal(Builtin):
198198
class ByteArray(Builtin):
199199
r"""
200200
<dl>
201-
<dt>'ByteArray[{$b_1$, $b_2$, $\ldots$}]'
202-
<dd> Represents a sequence of Bytes $b_1$, $b_2$, $\ldots$
201+
<dt>'ByteArray[{$b_1$, $b_2$, ...}]'
202+
<dd> Represents a sequence of Bytes $b_1$, $b_2$, ...
203203
<dt>'ByteArray["string"]'
204204
<dd> Constructs a byte array where bytes comes from decode a b64 encoded String
205205
</dl>
@@ -6274,10 +6274,10 @@ class Failure(Builtin):
62746274
class FirstCase(Builtin):
62756275
"""
62766276
<dl>
6277-
<dt> FirstCase[{$e1$, $e2$, $\\ldots$}, $pattern$]
6277+
<dt> FirstCase[{$e1$, $e2$, ...}, $pattern$]
62786278
<dd>gives the first $ei$ to match $pattern$, or $Missing[\"NotFound\"]$ if none matching pattern is found.
62796279
6280-
<dt> FirstCase[{$e1$,$e2$, $\\ldots$}, $pattern$ -> $rhs$]
6280+
<dt> FirstCase[{$e1$,$e2$, ...}, $pattern$ -> $rhs$]
62816281
<dd> gives the value of $rhs$ corresponding to the first $ei$ to match pattern.
62826282
<dt> FirstCase[$expr$, $pattern$, $default$]
62836283
<dd> gives $default$ if no element matching $pattern$ is found.

0 commit comments

Comments
 (0)