summary refs log tree commit diff
path: root/doc/builders/fetchers.chapter.md
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2022-06-29 12:50:16 -0600
committerCody Hiar <cody@hiar.ca>2022-06-29 12:50:16 -0600
commit24e95a44613d9731e459ba98a9cfc011c4edd922 (patch)
treeddaf26ee03d6c15c0a8201af62dfd8ea2f801c00 /doc/builders/fetchers.chapter.md
parent48d5f38c6a2e5d21c22abb2485aaeeb66ca8a50a (diff)
downloadnixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.tar
nixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.tar.gz
nixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.tar.bz2
nixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.tar.lz
nixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.tar.xz
nixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.tar.zst
nixpkgs-24e95a44613d9731e459ba98a9cfc011c4edd922.zip
Remove possessive apostrophes
Diffstat (limited to 'doc/builders/fetchers.chapter.md')
-rw-r--r--doc/builders/fetchers.chapter.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/builders/fetchers.chapter.md b/doc/builders/fetchers.chapter.md
index 29064f16b4f..3ed3c103d75 100644
--- a/doc/builders/fetchers.chapter.md
+++ b/doc/builders/fetchers.chapter.md
@@ -1,10 +1,10 @@
 # Fetchers {#chap-pkgs-fetchers}
 
-Nixpkgs provides fetchers for different protocols and services. Fetcher's are functions that simplify downloading files.
+Nixpkgs provides fetchers for different protocols and services. Fetchers are functions that simplify downloading files.
 
 ## Caveats
 
-Fetcher's store their output in the nix store, or cache, using Nix's [_fixed output derivation_](https://nixos.org/manual/nix/stable/#fixed-output-drvs). Later, Nix can reuse the downloaded contents via their hash. While the caching improves performance, it can lead to some confusion. For example, consider the following fetcher:
+Fetchers store their output in the nix store, or cache, using Nix's [_fixed output derivation_](https://nixos.org/manual/nix/stable/#fixed-output-drvs). Later, Nix can reuse the downloaded contents via their hash. While the caching improves performance, it can lead to some confusion. For example, consider the following fetcher:
 
 ```nix
 fetchurl {