Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/content/reference/flutter-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ The `flutter` command-line tool is how developers (or IDEs on behalf of
developers) interact with Flutter. For Dart related commands,
you can use the [`dart`][] command-line tool.

Here's how you might use the `flutter` tool to create, analyze, test, and run an
app:
Here's how you might use the `flutter` tool to create, analyze, test,
and run an app:

```console
$ flutter create my_app
Expand Down Expand Up @@ -50,7 +50,7 @@ The following table shows which commands you can use with the `flutter` tool:
| assemble | `flutter assemble -o <DIRECTORY>` | Assemble and build flutter resources. |
| attach | `flutter attach -d <DEVICE_ID>` | Attach to a running application. |
| bash-completion | `flutter bash-completion` | Output command line shell completion setup scripts. |
| build | `flutter build <DIRECTORY>` | Flutter build commands. |
| build | `flutter build <BUILD_TARGET>` | Build a target-specific bundle.. |
| channel | `flutter channel <CHANNEL_NAME>` | List or switch flutter channels. |
| clean | `flutter clean` | Delete the `build/` and `.dart_tool/` directories. |
| config | `flutter config --build-dir=<DIRECTORY>` | Configure Flutter settings. To remove a setting, configure it to an empty string. |
Expand Down
Loading