From 6401d876aee4081cf9f60ff42e4b9c738008566a Mon Sep 17 00:00:00 2001 From: Robbert Krebbers <mail@robbertkrebbers.nl> Date: Sun, 14 Jun 2020 20:27:31 +0200 Subject: [PATCH] Fix inconsistent space. --- theories/list.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theories/list.v b/theories/list.v index 8d45c48a..61013ab6 100644 --- a/theories/list.v +++ b/theories/list.v @@ -3470,7 +3470,7 @@ Section fmap. - exists y. split; [done | by left]. - destruct IH as [z [??]]. done. exists z. split; [done | by right]. Qed. - Lemma elem_of_list_fmap l x : x ∈ f <$> l ↔ ∃ y, x = f y ∧ y ∈ l. + Lemma elem_of_list_fmap l x : x ∈ f <$> l ↔ ∃ y, x = f y ∧ y ∈ l. Proof. naive_solver eauto using elem_of_list_fmap_1_alt, elem_of_list_fmap_2. Qed. -- GitLab