about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorBryan Lai <bryanlais@gmail.com>2024-01-07 18:47:47 +0800
committerBryan Lai <bryanlais@gmail.com>2024-01-08 19:42:16 +0800
commitdf62c3c87f35cd50d6ee20ea92900bb03ad827c9 (patch)
treef1d174b0787fff484f849b8fdc6e9a37ecfcaa44 /doc
parent9ff61712cb18bcd0ca1f1ec1b8cb1a75ad634263 (diff)
downloadnixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.tar
nixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.tar.gz
nixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.tar.bz2
nixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.tar.lz
nixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.tar.xz
nixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.tar.zst
nixlib-df62c3c87f35cd50d6ee20ea92900bb03ad827c9.zip
checkpointBuildTools: mkCheckpointedBuild -> mkCheckpointBuild
All other functions are in the form of `*{c,C}heckpointBuild*`, so we
deprecate the `mkCheckpointedBuild` function in favor of `mkCheckpointBuild`.

Also address some inconsistencies in the docs: some `buildOutput` should
actually be `incrementalBuildArtifacts`.
Diffstat (limited to 'doc')
-rw-r--r--doc/build-helpers/special/checkpoint-build.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build-helpers/special/checkpoint-build.section.md b/doc/build-helpers/special/checkpoint-build.section.md
index 5f01e699b947..676f04aa7a4e 100644
--- a/doc/build-helpers/special/checkpoint-build.section.md
+++ b/doc/build-helpers/special/checkpoint-build.section.md
@@ -18,7 +18,7 @@ changedVBox = pkgs.virtualbox.overrideAttrs (old: {
   src = path/to/vbox/sources;
 }
 ```
-  - use `mkCheckpointedBuild changedVBox buildOutput`
+  - use `mkCheckpointBuild changedVBox incrementalBuildArtifacts`
   - enjoy shorter build times
 
 ## Example {#sec-checkpoint-build-example}