From 5a2714ebc421f84f050225d0b1b02c6054139f0f Mon Sep 17 00:00:00 2001 From: Will Sargent Date: Wed, 14 Jul 2021 10:41:52 -0700 Subject: [PATCH] convenient typo --- _overviews/scala3-macros/best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-macros/best-practices.md b/_overviews/scala3-macros/best-practices.md index a35401ef31..8c7413beaf 100644 --- a/_overviews/scala3-macros/best-practices.md +++ b/_overviews/scala3-macros/best-practices.md @@ -148,7 +148,7 @@ def summonOrFail[T: Type]: Expr[T] = ``` If you are writing a macro and prefer to handle `Expr`s, `Expr.summon` is a -convient wrapper around `Implicits.search`: +convenient wrapper around `Implicits.search`: ```scala def summonOrFail[T: Type]: Expr[T] =