Skip to content

Commit 7d197f5

Browse files
committed
Prep for 0.1.0 release
1 parent d0d447e commit 7d197f5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SimplePolynomials"
22
uuid = "cc47b68c-3164-5771-a705-2bc0097375a0"
3-
version = "0.0.7"
3+
version = "0.1.0"
44

55
[deps]
66
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This module defines two types:
1414

1515
* `SimplePolynomial`: These are polynomials
1616
with exact coefficients (integers, rationals, Gaussian integers, Gaussian
17-
rationals, or `Mod`s). The objective is exactness perhaps at thMe
17+
rationals, or `Mod`s). The objective is exactness perhaps at the
1818
expense of computational efficiency.
1919
* `SimpleRationalFunction`: These are fractions whose numerator and
2020
denominator are `SimplePolynomial`s.
@@ -79,7 +79,7 @@ julia> coeffs(p)
7979
11
8080
4
8181
```
82-
In addition, use square brackets to retrieve a coefficient
82+
Use square brackets to retrieve a coefficient
8383
associated with a given power:
8484
```
8585
julia> p[2] # coefficient of x^2
@@ -379,7 +379,7 @@ julia> p.(ans)
379379

380380
## Calculus
381381

382-
`derivative()` returns the derivative of a `SiplePolynomial`
382+
`derivative()` returns the derivative of a `SimplePolynomial`
383383
or `SimpleRationalFunction`. We may also use `p'` for
384384
`derivative(p)`.
385385
```
@@ -431,9 +431,8 @@ ERROR: MethodError: no method matching integral(::SimpleRationalFunction)
431431

432432
The `Polynomials` module also defines polynomials with many additional
433433
properties. However, those polynomials allow floating point coefficients.
434-
The purpose here is to enforce exactness.
435434

436-
Conversion between a `SimplePolynomial` type and a `Polynomial` type is
435+
Conversion between a `SimplePolynomial` and a `Polynomial` is
437436
simple:
438437
* If `p` is a `SimplePolynomial`, then `Polynomial(p)` is the corresponding
439438
`Polynomial` type.

0 commit comments

Comments
 (0)