diff --git a/nixos/doc/manual/development/option-types.xml b/nixos/doc/manual/development/option-types.xml
index d993e47bc914..069cc36573d8 100644
--- a/nixos/doc/manual/development/option-types.xml
+++ b/nixos/doc/manual/development/option-types.xml
@@ -512,7 +512,7 @@ config.mod.two = { foo = 2; bar = "two"; };
The function to type check the value. Takes a value as parameter and
return a boolean. It is possible to extend a type check with the
addCheck function
- (), or to fully
override the check function
().
@@ -522,7 +522,7 @@ config.mod.two = { foo = 2; bar = "two"; };
byte = mkOption {
description = "An integer between 0 and 255.";
- type = addCheck types.int (x: x >= 0 && x <= 255);
+ type = types.addCheck types.int (x: x >= 0 && x <= 255);
};