From 18c684a27357e89a4551fd182c971f36bd0da8b3 Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Thu, 6 Feb 2020 16:40:40 +0100 Subject: [PATCH 1/2] Update tasty-inspect.md --- docs/docs/reference/metaprogramming/tasty-inspect.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/reference/metaprogramming/tasty-inspect.md b/docs/docs/reference/metaprogramming/tasty-inspect.md index fd0aea905b4e..3d1d2b5855b1 100644 --- a/docs/docs/reference/metaprogramming/tasty-inspect.md +++ b/docs/docs/reference/metaprogramming/tasty-inspect.md @@ -46,8 +46,8 @@ Note that if we need to run the main (in an object called `Test`) after compilation we need make available the compiler to the runtime: ```shell -dotc -with-compiler -d out Test.scala -dotr -with-compiler -classpath out Test +dotc -d out Test.scala +dotr -classpath out Test ``` From f6256a54244a6634465fb6fbe86f06fd9b57bb08 Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Thu, 6 Feb 2020 17:49:57 +0100 Subject: [PATCH 2/2] Update tasty-inspect.md --- docs/docs/reference/metaprogramming/tasty-inspect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/metaprogramming/tasty-inspect.md b/docs/docs/reference/metaprogramming/tasty-inspect.md index 3d1d2b5855b1..58aaf9b2e584 100644 --- a/docs/docs/reference/metaprogramming/tasty-inspect.md +++ b/docs/docs/reference/metaprogramming/tasty-inspect.md @@ -47,7 +47,7 @@ compilation we need make available the compiler to the runtime: ```shell dotc -d out Test.scala -dotr -classpath out Test +dotr -with-compiler -classpath out Test ```