Skip to content

Commit ac488f3

Browse files
SuprDewdakc
authored andcommitted
Clean up documentation (#9)
* Fix formatting in language documentation * Remove missing transforms from documentation
1 parent 38793d1 commit ac488f3

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

docs/language.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ programs.
1414

1515
Operation | Meaning
1616
----------|-------------------------------------------------
17-
`f + g` | sum of *f* and *g*
18-
`f - g` | difference of *f* and *g*
19-
`f ^ g` | *f* to the power *g*
20-
`f @ g` | *f* composed with *g* (can also be written *f(g)* when *f* is a name)
21-
`f ? g` | coefficients of *f* selected by nonnegative integer coefficients of *g*
22-
`f * g` | product of *f* and *g*
23-
`f / g` | quotient of *f* and *g*
24-
`f .* g` | coefficient-wise/Hadamard product of *f* and *g*
25-
`f ./ g` | coefficient-wise quotient of *f* and *g*
17+
`f + g` | sum of `f` and `g`
18+
`f - g` | difference of `f` and `g`
19+
`f ^ g` | `f` to the power `g`
20+
`f @ g` | `f` composed with `g` (can also be written `f(g)` when `f` is a name)
21+
`f ? g` | coefficients of `f` selected by nonnegative integer coefficients of `g`
22+
`f * g` | product of `f` and `g`
23+
`f / g` | quotient of `f` and `g`
24+
`f .* g` | coefficient-wise/Hadamard product of `f` and `g`
25+
`f ./ g` | coefficient-wise quotient of `f` and `g`
2626

2727
## Derivative and integral
2828

29-
Operation | Meaning
30-
------------|--------------------------------------------
31-
D(f) | derivative of *f*
32-
integral(f) | integral of *f*
29+
Operation | Meaning
30+
--------------|--------------------------------------------
31+
`D(f)` | derivative of `f`
32+
`integral(f)` | integral of `f`
3333

3434
## Functions
3535

@@ -54,15 +54,13 @@ Function | Meaning
5454
`artanh(f)` | area hyperbolic tangent function
5555
`laplace(f)` | `f .* {n!}`
5656
`laplacei(f)` | `f ./ {n!}`
57-
`revert(f)` | the compositional inverse of *f*
57+
`revert(f)` | the compositional inverse of `f`
5858

5959
## Transforms
6060

6161
Transform | Meaning
6262
---------------|----------------------------------------
6363
`ABS(f)` | coefficient-wise absolute value
64-
`AERATE1(f)` | `f(x^2)`
65-
`AERATE2(f)` | `f(x^3)`
6664
`BARRY1(f)` | `1/(1-x-x^2*f)`
6765
`BARRY2(f)` | `1/(1+x+x^2*f)`
6866
`BINOMIAL(f)` | `g=exp(x)*laplacei(f);laplace(g)`

0 commit comments

Comments
 (0)