summary refs log tree commit diff
diff options
context:
space:
mode:
authorthomassdk <32598350+thomassdk@users.noreply.github.com>2021-09-27 13:32:10 +0100
committerGitHub <noreply@github.com>2021-09-27 20:32:10 +0800
commit457ff3835c48d091fe0ba9e16dc8381703469c09 (patch)
tree9f204b74a60fa9858b424f3e1809bc6bd59e8b49
parent1541965676b8a5719aeadd5d7a7f1fc1566ed7af (diff)
downloadnixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.tar
nixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.tar.gz
nixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.tar.bz2
nixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.tar.lz
nixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.tar.xz
nixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.tar.zst
nixpkgs-457ff3835c48d091fe0ba9e16dc8381703469c09.zip
doc: fix misspelling (#139623)
doc/builders/fetchers.chapter.md: fetcheres -> fetchers
-rw-r--r--doc/builders/fetchers.chapter.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/builders/fetchers.chapter.md b/doc/builders/fetchers.chapter.md
index b1b00106b6c..e36724f295f 100644
--- a/doc/builders/fetchers.chapter.md
+++ b/doc/builders/fetchers.chapter.md
@@ -6,7 +6,7 @@ When using Nix, you will frequently need to download source code and other files
 
 Because fixed output derivations are _identified_ by their hash, a common mistake is to update a fetcher's URL or a version parameter, without updating the hash. **This will cause the old contents to be used.** So remember to always invalidate the hash argument.
 
-For those who develop and maintain fetcheres, a similar problem arises with changes to the implementation of a fetcher. These may cause a fixed output derivation to fail, but won't normally be caught by tests because the supposed output is already in the store or cache. For the purpose of testing, you can use a trick that is embodied by the [`invalidateFetcherByDrvHash`](#sec-pkgs-invalidateFetcherByDrvHash) function. It uses the derivation `name` to create a unique output path per fetcher implementation, defeating the caching precisely where it would be harmful.
+For those who develop and maintain fetchers, a similar problem arises with changes to the implementation of a fetcher. These may cause a fixed output derivation to fail, but won't normally be caught by tests because the supposed output is already in the store or cache. For the purpose of testing, you can use a trick that is embodied by the [`invalidateFetcherByDrvHash`](#sec-pkgs-invalidateFetcherByDrvHash) function. It uses the derivation `name` to create a unique output path per fetcher implementation, defeating the caching precisely where it would be harmful.
 
 ## `fetchurl` and `fetchzip` {#fetchurl}