Skip to content

Commit

Permalink
chore: remove redundant spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
euprunin authored and avigad committed Jan 6, 2025
1 parent dd0e13e commit 5412d02
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ end
At this stage, you also know that if you use
the ``apply`` tactic to apply ``my_lemma``
to a goal of the form ``|a * b| < δ``,
you are left with new goals that require you to prove
you are left with new goals that require you to prove
each of the hypotheses.
.. index:: intro, tactics; intro
Expand Down
2 changes: 1 addition & 1 deletion MIL/C03_Logic/S03_Negation.lean
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ example (h : ¬Monotone f) : ∃ x y, x ≤ y ∧ f y < f x := by
-- SOLUTIONS:
example (h : ¬Monotone f) : ∃ x y, x ≤ y ∧ f y < f x := by
rw [Monotone] at h
push_neg at h
push_neg at h
exact h

/- TEXT:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ SOLUTIONS: -/
rw [if_pos x₁A, if_pos x₂A] at hxeq
exact hf hxeq
-- BOTH:
push_neg at xA
push_neg at xA
/- EXAMPLES:
sorry
SOLUTIONS: -/
Expand Down
2 changes: 1 addition & 1 deletion MIL/C05_Elementary_Number_Theory/S01_Irrational_Roots.lean
Original file line number Diff line number Diff line change
Expand Up @@ -465,5 +465,5 @@ end
-- have := Ne.symm (ne_of_lt this)
-- intro h
-- field_simp [this] at h
-- norm_cast at h
-- norm_cast at h
-- sorry
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ SOLUTIONS: -/
refine ⟨p, ?_, pp⟩
show p > n
by_contra ple
push_neg at ple
push_neg at ple
have : p ∣ Nat.factorial (n + 1) := by
/- EXAMPLES:
sorry
Expand Down
2 changes: 1 addition & 1 deletion MIL/C10_Topology/S01_Filters.lean
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ condition then says that ``univ`` is sufficiently large, the second one says tha
large set is sufficiently large and the third one says that the intersection of two sufficiently large sets
is sufficiently large.
It may be even more useful to think of a filter on a type ``X``
It may be even more useful to think of a filter on a type ``X``
as a generalized element of ``Set X``. For instance, ``atTop`` is the
"set of very large numbers" and ``𝓝 x₀`` is the "set of points very close to ``x₀``."
One manifestation of this view is that we can associate to any ``s : Set X`` the so-called *principal filter*
Expand Down
2 changes: 1 addition & 1 deletion MIL/C10_Topology/S03_Topological_Spaces.lean
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ example {ι : Type*} [Fintype ι] {s : ι → Set X} (hs : ∀ i, IsOpen (s i))

/- TEXT:
Closed sets are then defined as sets whose complement is open. A function between topological spaces
Closed sets are then defined as sets whose complement is open. A function between topological spaces
is (globally) continuous if all preimages of open sets are open.
BOTH: -/
-- QUOTE:
Expand Down
2 changes: 1 addition & 1 deletion user_repo_source/.github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
WARNING: Please do not open a pull request in this repository.

This is not the relevant repository to contribute to Mathematics in Lean. This repository is cloned by people who want to study the book. It is automatically created from the source repository which can be found at https://github.com/avigad/mathematics_in_lean_source and where you can open a pull-request.
This is not the relevant repository to contribute to Mathematics in Lean. This repository is cloned by people who want to study the book. It is automatically created from the source repository which can be found at https://github.com/avigad/mathematics_in_lean_source and where you can open a pull-request.
2 changes: 1 addition & 1 deletion user_repo_source/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Do the following:
You can call the copy `my_files` or whatever you want and use it to create
your own Lean files as well.

At that point, you can open the textbook in a web browser
At that point, you can open the textbook in a web browser
at [https://leanprover-community.github.io/mathematics_in_lean/](https://leanprover-community.github.io/mathematics_in_lean/)
and start reading and doing the exercises in VS Code.

Expand Down

0 comments on commit 5412d02

Please sign in to comment.