Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/docs/get-started/codelab.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ The animated GIF shows how the app works at the completion of part 1.
<?code-excerpt path-base="codelabs/startup_namer/step1_base"?>

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}}
Expand Down Expand Up @@ -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();
}
```

Expand Down