From 8fe32671b2fd304a06c9c2cc400ba2ebe24c03db Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Wed, 24 Nov 2021 14:21:09 +0100 Subject: [PATCH 1/2] Clarify Dart getting started steps --- dart/content.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dart/content.md b/dart/content.md index 1fd8b702fccf..512423c6fe7f 100644 --- a/dart/content.md +++ b/dart/content.md @@ -10,7 +10,8 @@ We recommend using small runtime images that leverage Dart's support for ahead-o ### Creating a Dart server app -After installing the Dart SDK, use the `dart` command to create a new server app: +After [installing](https://dart.dev/get-dart) the Dart SDK, +version 2.14 or later, use the `dart` command to create a new server app: ```shell $ dart create -t server-shelf myserver From 712958b28eca1768cedb8031abba7e9e6cb248e8 Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Wed, 24 Nov 2021 15:25:29 +0100 Subject: [PATCH 2/2] Update content.md Fix formatting --- dart/content.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dart/content.md b/dart/content.md index 512423c6fe7f..7c2948ef232e 100644 --- a/dart/content.md +++ b/dart/content.md @@ -10,8 +10,7 @@ We recommend using small runtime images that leverage Dart's support for ahead-o ### Creating a Dart server app -After [installing](https://dart.dev/get-dart) the Dart SDK, -version 2.14 or later, use the `dart` command to create a new server app: +After [installing](https://dart.dev/get-dart) the Dart SDK, version 2.14 or later, use the `dart` command to create a new server app: ```shell $ dart create -t server-shelf myserver