diff --git a/src/Lean/Expr.lean b/src/Lean/Expr.lean index 9b3a71b390..2f18f450fa 100644 --- a/src/Lean/Expr.lean +++ b/src/Lean/Expr.lean @@ -73,7 +73,7 @@ inductive BinderInfo where | default /-- Implicit binder annotation, e.g., `{x : α}` -/ | implicit - /-- Strict implicit binder annotation, e.g., `{{ x : α }}` -/ + /-- Strict implicit binder annotation, e.g., `⦃x : α⦄` -/ | strictImplicit /-- Local instance binder annotation, e.g., `[Decidable α]` -/ | instImplicit @@ -107,7 +107,7 @@ def BinderInfo.isImplicit : BinderInfo → Bool | BinderInfo.implicit => true | _ => false -/-- Return `true` if the given `BinderInfo` is a strict implicit annotation (e.g., `{{α : Type u}}`) -/ +/-- Return `true` if the given `BinderInfo` is a strict implicit annotation (e.g., `⦃α : Type u⦄`) -/ def BinderInfo.isStrictImplicit : BinderInfo → Bool | BinderInfo.strictImplicit => true | _ => false