about summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorSam <30577766+Samasaur1@users.noreply.github.com>2024-01-25 07:06:58 -0800
committerGitHub <noreply@github.com>2024-01-25 16:06:58 +0100
commit1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690 (patch)
tree0a2d55eb2bd62b6d751715e540cd7e88578f6a37 /doc/languages-frameworks
parent848f518363131449752a53d191276f661e22b5ee (diff)
downloadnixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.tar
nixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.tar.gz
nixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.tar.bz2
nixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.tar.lz
nixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.tar.xz
nixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.tar.zst
nixlib-1cbd2ac8f8174b90c1a4aa12230f59a6eb7c3690.zip
doc: Fix typo in dotnet.section.md (#282685)
It should be `dotnetCorePackages.sdk_6_0`, not `dotnetCorePackages.sdk_6.0`
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/dotnet.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index 978ec07cb961..ac659a9c6d28 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -144,7 +144,7 @@ in buildDotnetModule rec {
 
   projectReferences = [ referencedProject ]; # `referencedProject` must contain `nupkg` in the folder structure.
 
-  dotnet-sdk = dotnetCorePackages.sdk_6.0;
+  dotnet-sdk = dotnetCorePackages.sdk_6_0;
   dotnet-runtime = dotnetCorePackages.runtime_6_0;
 
   executables = [ "foo" ]; # This wraps "$out/lib/$pname/foo" to `$out/bin/foo`.