diff options
author | Christian Oliff <[email protected]> | 2024-04-11 16:23:17 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-11 09:23:17 +0200 |
commit | 17765a74518f720b3a5a90adaa0dfad1f5cfaf76 (patch) | |
tree | da2c302b6cb33057c430432037197e5583f1a84e /helpers | |
parent | 92de8625c7f122343059e98c62d1049e27bb2573 (diff) | |
download | hugo-17765a74518f720b3a5a90adaa0dfad1f5cfaf76.tar.gz hugo-17765a74518f720b3a5a90adaa0dfad1f5cfaf76.zip |
all: Typo fixes
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/path.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/path.go b/helpers/path.go index 4a6c9a688..ba95be605 100644 --- a/helpers/path.go +++ b/helpers/path.go @@ -374,7 +374,7 @@ func cacheDirDefault(cacheDir string) string { // Turns out that Cloudflare also sets NETLIFY=true in its build environment, // but all of these 3 should not give any false positives. if os.Getenv("NETLIFY") == "true" && os.Getenv("PULL_REQUEST") != "" && os.Getenv("DEPLOY_PRIME_URL") != "" { - // Netlify's cache behaviour is not documented, the currently best example + // Netlify's cache behavior is not documented, the currently best example // is this project: // https://github.com/philhawksworth/content-shards/blob/master/gulpfile.js return "/opt/build/cache/hugo_cache/" |