about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorAleksana <me@aleksana.moe>2024-06-21 21:52:39 +0800
committerGitHub <noreply@github.com>2024-06-21 21:52:39 +0800
commite739feeb6ef1e3fbcf32f2d470441a3a1049e79b (patch)
tree20c85b3e691bf82c9efa16ecd1d90d2e2f42150d /doc
parent4bebab5e980e572ca8e93f64f8e81bc88e92684c (diff)
parent4e6ae7836d4d45c96a414038754ff39e815380a0 (diff)
Merge pull request #321272 from Aleksanaa/flutter-doc
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 594ef7391cbb1..1b065ff4cde71 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";