diff --git a/src/lay/lay/doc/manual/lvs_device_extractors.xml b/src/lay/lay/doc/manual/lvs_device_extractors.xml
index b6fdbe30a..2c43ca6d3 100644
--- a/src/lay/lay/doc/manual/lvs_device_extractors.xml
+++ b/src/lay/lay/doc/manual/lvs_device_extractors.xml
@@ -3,9 +3,9 @@
+ "extract_devices" will return the
+ Most device extractors extract more parameters than they give you by default. + For example, the resitor extractor will not just extract the resistance, but also the length (L) + and width (W) of the resistor stripe and its area (A) and perimeter (P). + By default these additional parameters are declared "secondary" - i.e. they will not + show up in the netlist browser, they will not participate in the device compare and + will not be netlisted. +
+ ++ Parameters can be declared primary ones by using "enable_parameter" on the device class. + Hence it is possible to enable "W" and "L" on a resistor type using the following code: +
+ +dc = extract_devices(resistor("RES", 1), ...)
+dc.enable_parameter("W", true)
+dc.enable_parameter("L", true)
+
+