summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authoraleksana <me@aleksana.moe>2024-06-20 23:03:34 +0800
committeraleksana <me@aleksana.moe>2024-06-20 23:03:34 +0800
commit4e6ae7836d4d45c96a414038754ff39e815380a0 (patch)
tree455b85416318441c753d919ade36f4b3f7ca6fe3 /doc
parent96b429b0b0dd312b311aed86d761583b904d342f (diff)
doc/dart: minor fix to example code
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/dart.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/dart.section.md b/doc/languages-frameworks/dart.section.md
index 594ef7391cbb..1b065ff4cde7 100644
--- a/doc/languages-frameworks/dart.section.md
+++ b/doc/languages-frameworks/dart.section.md
@@ -101,7 +101,7 @@ See the [Dart documentation](#ssec-dart-applications) for more details on requir
`flutter` in Nixpkgs always points to `flutterPackages.stable`, which is the latest packaged version. To avoid unforeseen breakage during upgrade, packages in Nixpkgs should use a specific flutter version, such as `flutter319` and `flutter322`, instead of using `flutter` directly.
```nix
-{ flutter, fetchFromGitHub }:
+{ flutter322, fetchFromGitHub }:
flutter322.buildFlutterApplication {
pname = "firmware-updater";