Skip to content

Commit da6fca1

Browse files
committed
More chapter-heading tweaks
1 parent 702601c commit da6fca1

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

mathics/builtin/numeric.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# cython: language_level=3
22
# -*- coding: utf-8 -*-
33

4+
# Note: docstring is flowed in documentation. Line breaks in the docstring will appear in the
5+
# printed output, so be carful not to add then mid-sentence.
46

57
"""
6-
Numeric Evaluation
8+
Numeric Evaluation and Precision
79
8-
Support for numeric evaluation with arbitrary precision is just a
9-
proof-of-concept.
10-
Precision is not "guarded" through the evaluation process. Only
11-
integer precision is supported.
10+
Support for numeric evaluation with arbitrary precision is just a proof-of-concept.
11+
12+
Precision is not "guarded" through the evaluation process. Only integer precision is supported.
1213
However, things like 'N[Pi, 100]' should work as expected.
1314
"""
1415
from mathics.version import __version__ # noqa used in loading to check consistency.

mathics/builtin/patterns.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Patterns and Rules
4+
Rules and Patterns
5+
6+
The concept of transformation rules for arbitrary symbolic patterns is key in Mathics.
7+
8+
Also, functions can get applied or transformed depending on whether or not functions arguments match.
59
610
Some examples:
711
>> a + b + c /. a + b -> t

0 commit comments

Comments
 (0)