From 40c774935ddc16427654d008d41450de1b07ff10 Mon Sep 17 00:00:00 2001 From: GChanathip <68949592+GChanathip@users.noreply.github.com> Date: Sun, 16 Feb 2025 20:22:13 +0700 Subject: [PATCH] fix incorrect fvm spawn example the command should be fvm spawn x.x.x build not fvm spawn x.x.x flutter build --- docs/pages/documentation/guides/basic-commands.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/documentation/guides/basic-commands.mdx b/docs/pages/documentation/guides/basic-commands.mdx index 561696f8..d9b8b646 100644 --- a/docs/pages/documentation/guides/basic-commands.mdx +++ b/docs/pages/documentation/guides/basic-commands.mdx @@ -268,14 +268,14 @@ This command is particularly useful when you need to run a Flutter command (such To build your Flutter project using version `2.5.0` of the Flutter SDK: ```bash -fvm spawn 2.5.0 flutter build +fvm spawn 2.5.0 build ``` **Running Tests with a Different SDK Version**: If you need to run tests using a particular Flutter SDK version: ```bash -fvm spawn 2.2.3 flutter test +fvm spawn 2.2.3 test ``` ## Exec @@ -359,4 +359,4 @@ If you need to run tests using the Flutter SDK version associated with the `stag ```bash > fvm flavor staging flutter test -``` \ No newline at end of file +```