about summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-08-14 08:21:26 +0300
committerArtturin <Artturin@artturin.com>2023-08-14 18:46:47 +0300
commitb93da3f4b77b0f3c441212c17bba02360f7fadee (patch)
tree7c0f9c53de08bb318c96d91876af662f7597429c /doc/languages-frameworks
parent3c1f82f99ee02dad4eb480f6216ae2ece445d11d (diff)
treewide: `overrideScope'` -> `overrideScope`
`lib.makeScope` `overrideScope'` has been renamed to `overrideScope`

`fd --type f | xargs sd --string-mode "overrideScope'" "overrideScope"`
Diffstat (limited to 'doc/languages-frameworks')
-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 b7f1f19546a78..2d680ea6b3b6a 100644
--- a/doc/languages-frameworks/cuda.section.md
+++ b/doc/languages-frameworks/cuda.section.md
@@ -30,7 +30,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;
   }});
 in callPackage { inherit cudaPackages; };