Skip to content

Commit

Permalink
fix(data/mv_polynomial): fix doc strings (#4219)
Browse files Browse the repository at this point in the history
  • Loading branch information
shingtaklam1324 committed Sep 24, 2020
1 parent f0713cb commit 3484e8b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/basic.lean
Expand Up @@ -125,7 +125,7 @@ variables (R σ)
theorem algebra_map_eq : algebra_map R (mv_polynomial σ R) = C := rfl
variables {R σ}

/-- `X n` is the degree `1` monomial `1*n` -/
/-- `X n` is the degree `1` monomial $X_n$. -/
def X (n : σ) : mv_polynomial σ R := monomial (single n 1) 1

@[simp] lemma C_0 : C 0 = (0 : mv_polynomial σ R) := by simp [C, monomial]; refl
Expand Down
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/comap.lean
Expand Up @@ -16,7 +16,7 @@ This file defines the `comap` function on `mv_polynomial`.
## Notation
As in other polynomial files we typically use the notation:
As in other polynomial files, we typically use the notation:
+ `σ : Type*` (indexing the variables)
Expand Down
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/comm_ring.lean
Expand Up @@ -16,7 +16,7 @@ This file does not define any new operations, but proves some of these stronger
## Notation
As in other polynomial files we typically use the notation:
As in other polynomial files, we typically use the notation:
+ `σ : Type*` (indexing the variables)
Expand Down
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/equiv.lean
Expand Up @@ -15,7 +15,7 @@ based on equivalences between the underlying types.
## Notation
As in other polynomial files we typically use the notation:
As in other polynomial files, we typically use the notation:
+ `σ : Type*` (indexing the variables)
Expand Down
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/pderivative.lean
Expand Up @@ -22,7 +22,7 @@ It is based purely on the polynomial exponents and coefficients.
## Notation
This file uses notation slightly different from other `mv_polynomial` files:
As in other polynomial files, we typically use the notation:
+ `σ : Type*` (indexing the variables)
Expand Down
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/rename.lean
Expand Up @@ -18,7 +18,7 @@ which modifies the set of variables.
## Notation
As in other polynomial files we typically use the notation:
As in other polynomial files, we typically use the notation:
+ `σ τ α : Type*` (indexing the variables)
Expand Down
2 changes: 1 addition & 1 deletion src/data/mv_polynomial/variables.lean
Expand Up @@ -36,7 +36,7 @@ monomial of $P$.
## Notation
As in other polynomial files we typically use the notation:
As in other polynomial files, we typically use the notation:
+ `σ : Type*` (indexing the variables)
Expand Down

0 comments on commit 3484e8b

Please sign in to comment.