From 219220607a7241495f71844fdaccac7969331bda Mon Sep 17 00:00:00 2001 From: Eugene Burmako Date: Mon, 21 Jan 2013 07:42:26 +0100 Subject: [PATCH] another typo in the macro guide --- overviews/macros/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviews/macros/overview.md b/overviews/macros/overview.md index e0855fa250..c930107c50 100644 --- a/overviews/macros/overview.md +++ b/overviews/macros/overview.md @@ -289,7 +289,7 @@ As the printout shows, nothing dramatic happens. Compiler guards itself against ### Reporting warnings and errors -The canonical way to interact with the use is through the methods of `scala.reflect.macros.FrontEnds`. +The canonical way to interact with the user is through the methods of `scala.reflect.macros.FrontEnds`. `c.error` reports a compilation error, `c.info` issues a warning, `c.abort` reports an error and terminates execution of a macro.