From 1ae7f5789cca013f3d785a07dc6ea43d4f6a30b9 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Thu, 29 Apr 2021 00:04:45 +0300 Subject: [PATCH] Clarify example running readme --- example/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/example/README.md b/example/README.md index 1bad21b..59e146f 100644 --- a/example/README.md +++ b/example/README.md @@ -1,5 +1,10 @@ -To build any of these examples, specify the relevant DUB configuration when building Poodinis with DUB: +To run any of these examples, specify the relevant DUB configuration: ``` -dub build --build=release --config=Example +dub run --build=release --config=Example ``` Where \ corresponds to the name of the folder where the code example is in (camel-cased). + +e.g: +``` +dub run --build=release --config=constructorInjectionExample +```