diff --git a/theories/namespaces.v b/theories/namespaces.v
index 2d5038c00c7cf9e0d2a8614b9fdc1c2c29c9d78b..9bd02fcd809864c74bb1f44d026af45e4d0a4bd1 100644
--- a/theories/namespaces.v
+++ b/theories/namespaces.v
@@ -58,7 +58,7 @@ Section namespace.
     intros Hxy a. unfold up_close. rewrite !nclose_eq, !ndot_eq.
     unfold nclose_def, ndot_def; rewrite !elem_coPset_suffixes.
     intros [qx ->] [qy Hqy].
-    revert Hqy. by intros [= ?%(inj _)]%positives_flatten_suffix_eq.
+    revert Hqy. by intros [= ?%(inj encode)]%positives_flatten_suffix_eq.
   Qed.
 
   Lemma ndot_preserve_disjoint_l N E x : ↑N ## E → ↑N.@x ## E.
diff --git a/theories/option.v b/theories/option.v
index f658505e880018ead0a31fe45f06996ea5a8d751..f8c284a9159a7554a62ad95d0b4cd400342fceb5 100644
--- a/theories/option.v
+++ b/theories/option.v
@@ -189,8 +189,8 @@ Lemma fmap_Some_equiv {A B} `{Equiv B} `{!Equivalence (≡@{B})} (f : A → B) m
   f <$> mx ≡ Some y ↔ ∃ x, mx = Some x ∧ y ≡ f x.
 Proof.
   destruct mx; simpl; split.
-  - intros ?%(inj _). eauto.
-  - intros (? & ->%(inj _) & ?). constructor. done.
+  - intros ?%(inj Some). eauto.
+  - intros (? & ->%(inj Some) & ?). constructor. done.
   - intros ?%symmetry%equiv_None. done.
   - intros (? & ? & ?). done.
 Qed.