Skip to content

Commit

Permalink
chore(*): futureproof import syntax (#2402)
Browse files Browse the repository at this point in the history
The next community version of Lean will treat a line starting in the first column
after an import as a new command, not a continuation of the import.
  • Loading branch information
rwbarton committed Apr 13, 2020
1 parent ef4d235 commit 64fa9a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/analysis/analytic/basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Authors: Sébastien Gouëzel
-/

import analysis.calculus.times_cont_diff tactic.omega analysis.complex.exponential
analysis.specific_limits
analysis.specific_limits

/-!
# Analytic functions
Expand Down
2 changes: 1 addition & 1 deletion src/topology/metric_space/gromov_hausdorff.lean
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author: Sébastien Gouëzel
-/

import topology.metric_space.closeds set_theory.cardinal topology.metric_space.gromov_hausdorff_realized
topology.metric_space.completion
topology.metric_space.completion

/-!
# Gromov-Hausdorff distance
Expand Down
2 changes: 1 addition & 1 deletion src/topology/metric_space/gromov_hausdorff_realized.lean
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ their Hausdorff distance. This construction is instrumental to study the Gromov-
distance between nonempty compact metric spaces -/

import topology.bounded_continuous_function topology.metric_space.gluing
topology.metric_space.hausdorff_distance
topology.metric_space.hausdorff_distance

noncomputable theory
open_locale classical
Expand Down
2 changes: 1 addition & 1 deletion src/topology/metric_space/isometry.lean
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Authors: Sébastien Gouëzel
-/

import topology.metric_space.basic
topology.bounded_continuous_function analysis.normed_space.basic topology.opens
topology.bounded_continuous_function analysis.normed_space.basic topology.opens

/-!
# Isometries
Expand Down

0 comments on commit 64fa9a2

Please sign in to comment.