From b9d8808899954ed4adcac25931fc65f3c5e33a6e Mon Sep 17 00:00:00 2001 From: Shams Zakhour Date: Wed, 17 Apr 2019 15:53:48 -0700 Subject: [PATCH] Some tweaks to the codelab. --- src/docs/get-started/codelab.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/docs/get-started/codelab.md b/src/docs/get-started/codelab.md index b8d31d51a0b..a4f772d68dc 100644 --- a/src/docs/get-started/codelab.md +++ b/src/docs/get-started/codelab.md @@ -79,7 +79,8 @@ The animated GIF shows how the app works at the completion of part 1. Create a simple, templated Flutter app, using the instructions in -[Getting Started with your first Flutter app.](/docs/get-started/test-drive#create-app) +[Getting Started with your first Flutter +app.](/docs/get-started/test-drive#create-app) Name the project **startup_namer** (instead of _myapp_). {{site.alert.tip}} @@ -324,7 +325,7 @@ a child inside the existing `MyApp` stateless widget. ```dart class RandomWords extends StatefulWidget { @override - RandomWordsState createState() => new RandomWordsState(); + RandomWordsState createState() => RandomWordsState(); } ```