about summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-05-28 00:14:04 +0000
committerGitHub <noreply@github.com>2023-05-28 00:14:04 +0000
commit53e76520b9706d42e83fd779e67c50e72da40944 (patch)
treebf7aad52e64a823474e07a5cbb3a5c1178d09995 /doc/languages-frameworks
parent33dfdef1d3893a49c28247a5b2104b2257056f87 (diff)
parent73960c65867d2529702275e170b7ef3b2068bd3d (diff)
downloadnixlib-53e76520b9706d42e83fd779e67c50e72da40944.tar
nixlib-53e76520b9706d42e83fd779e67c50e72da40944.tar.gz
nixlib-53e76520b9706d42e83fd779e67c50e72da40944.tar.bz2
nixlib-53e76520b9706d42e83fd779e67c50e72da40944.tar.lz
nixlib-53e76520b9706d42e83fd779e67c50e72da40944.tar.xz
nixlib-53e76520b9706d42e83fd779e67c50e72da40944.tar.zst
nixlib-53e76520b9706d42e83fd779e67c50e72da40944.zip
Merge master into haskell-updates
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/go.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/go.section.md b/doc/languages-frameworks/go.section.md
index c697a6908751..cf1808414234 100644
--- a/doc/languages-frameworks/go.section.md
+++ b/doc/languages-frameworks/go.section.md
@@ -19,7 +19,7 @@ In the following is an example expression using `buildGoModule`, the following a
   To avoid updating this field when dependencies change, run `go mod vendor` in your source repo and set `vendorHash = null;`
 
   To obtain the actual hash, set `vendorHash = lib.fakeSha256;` and run the build ([more details here](#sec-source-hashes)).
-- `proxyVendor`: Fetches (go mod download) and proxies the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build or if any dependency has case-insensitive conflicts which will produce platform dependant `vendorHash` checksums.
+- `proxyVendor`: Fetches (go mod download) and proxies the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build or if any dependency has case-insensitive conflicts which will produce platform-dependent `vendorHash` checksums.
 - `modPostBuild`: Shell commands to run after the build of the go-modules executes `go mod vendor`, and before calculating fixed output derivation's `vendorHash` (or `vendorSha256`). Note that if you change this attribute, you need to update `vendorHash` (or `vendorSha256`) attribute.
 
 ```nix