Skip to content

Commit

Permalink
chore: fix some typos in the library (#1083)
Browse files Browse the repository at this point in the history
### Note
"Non-" is commonly spelled without a hyphen in American English.
- https://www.oxfordlearnersdictionaries.com/definition/english/non
- https://en.wiktionary.org/wiki/non-#Usage_notes
  • Loading branch information
fredrik-bakke committed Mar 19, 2024
1 parent 2c80040 commit 70f0e71
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion MIXFIX-OPERATORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Below, we outline a list of general rules when assigning associativities.
[function composition `_∘_`](foundation-core.function-types.md), can be
assigned _any associativity_.

- **Non-parametric arithmetic operators** are often naturally computed from left
- **Nonparametric arithmetic operators** are often naturally computed from left
to right. For instance, the expression `1 - 2 - 3` is computed as
`(1 - 2) - 3 = -1 - 3 = -4`, hence should be _left associative_. This applies
to addition, subtraction, multiplication, and division. Note that for
Expand Down
2 changes: 1 addition & 1 deletion src/foundation/injective-maps.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ maps between general types it is recommended to use the notion of

## Definitions

### Non-injective maps
### Noninjective maps

```agda
module _
Expand Down
2 changes: 1 addition & 1 deletion src/foundation/noncontractible-types.lagda.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Non-contractible types
# Noncontractible types

```agda
module foundation.noncontractible-types where
Expand Down
4 changes: 2 additions & 2 deletions src/linear-algebra/functoriality-matrices.lagda.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Functoriality of matrices
# Functoriality of the type of matrices

```agda
module linear-algebra.functoriality-matrices where
Expand All @@ -19,7 +19,7 @@ open import linear-algebra.matrices

## Idea

An map `f : A B` induces a map `matrix A m n matrix B m n`.
Any map `f : A B` induces a map `matrix A m n matrix B m n`.

## Definition

Expand Down
2 changes: 1 addition & 1 deletion src/linear-algebra/functoriality-vectors.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ open import univalent-combinatorics.standard-finite-types

## Idea

Any map `f : A B` determines a map `vec n A vec n B` for every `n`.
Any map `f : A B` determines a map `vec A n vec B n` for every `n`.

## Definition

Expand Down
2 changes: 1 addition & 1 deletion src/linear-algebra/vectors-on-commutative-rings.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ open import linear-algebra.vectors-on-rings
## Idea

Vectors on a commutative ring `R` are vectors on the underlying type of `R`. The
commutative ring structur on `R` induces further structure on the type of
commutative ring structure on `R` induces further structure on the type of
vectors on `R`.

## Definitions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ open import linear-algebra.vectors-on-semirings
## Idea

Vectors on a commutative semiring `R` are vectors on the underlying type of `R`.
The commutative semiring structur on `R` induces further structure on the type
The commutative semiring structure on `R` induces further structure on the type
of vectors on `R`.

## Definitions
Expand Down
2 changes: 1 addition & 1 deletion src/ring-theory/algebras-rings.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ An **algebra** over a [ring](ring-theory.rings.md) `R` consists of an

## Definitions

### Non-unital algebras over a ring
### Nonunital algebras over a ring

```agda
has-bilinear-mul-left-module-Ring :
Expand Down
4 changes: 2 additions & 2 deletions src/structured-types/noncoherent-h-spaces.lagda.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Non-coherent H-spaces
# Noncoherent H-spaces

```agda
module structured-types.noncoherent-h-spaces where
Expand Down Expand Up @@ -43,7 +43,7 @@ unital-mul-Pointed-Type A =
( unit-laws-mul-Pointed-Type A)
```

### Non-coherent Noncoherent-H-Spaces
### Noncoherent H-Spaces

```agda
noncoherent-h-space-structure :
Expand Down

0 comments on commit 70f0e71

Please sign in to comment.