summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorHraban Luyat <hraban@0brg.net>2023-05-10 14:32:27 -0400
committerHraban Luyat <hraban@0brg.net>2023-05-10 14:32:27 -0400
commit7282c4012d8fc5fa4564ae95b6cbe870d0c463b6 (patch)
tree691b78281243d770d491beb631079e1da4b8e1b4 /doc
parentaf743dc9e16124a03ec01d91dc10af8d56d398ef (diff)
docs: typo in cuda docs, forgot a colon (:)
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/cuda.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/cuda.section.md b/doc/languages-frameworks/cuda.section.md
index 6300904c61c87..f523a8c884617 100644
--- a/doc/languages-frameworks/cuda.section.md
+++ b/doc/languages-frameworks/cuda.section.md
@@ -27,7 +27,7 @@ package set to make it the default. This guarantees you get a consistent package
 set.
 ```nix
 mypkg = let
-  cudaPackages = cudaPackages_11_5.overrideScope' (final: prev {
+  cudaPackages = cudaPackages_11_5.overrideScope' (final: prev: {
     cudnn = prev.cudnn_8_3_2;
   }});
 in callPackage { inherit cudaPackages; };