diff --git a/docs/commandref.html b/docs/commandref.html
index 3fc1c00eb..1ebc3f5c9 100644
--- a/docs/commandref.html
+++ b/docs/commandref.html
@@ -11050,7 +11050,7 @@ isday
values, which should be in the form of a floating point value). The default
value is Frankfurt am Main, Germany.
- The default altitude ($altit in SUNRISE_EL.pm) defines the sunrise/sunset
+ The default altitude ($defaultaltit in SUNRISE_EL.pm) defines the sunrise/sunset
for Civil twilight (i.e. one can no longer read outside without artificial
illumination), which differs from sunrise/sunset times found on different
websites. See perldoc "DateTime::Event::Sunrise" for alternatives.
@@ -11071,11 +11071,31 @@ isday
+ # When sun is 6 degrees below horizon - same as sunrise();
+ sunrise("CIVIL");
+
+ # When sun is 3 degrees below (-3 above) horizon (Between real and civil sunset)
+ sunset("HORIZON -3");
+
+ # When sun is 1 degree above horizon
+ sunset("HORIZON 1");
+
+ # Switch lamp1 on at real sunset, not before 18:00 and not after 21:00
+ define a15 at *{sunset("REAL",0,"18:00","21:00")} set lamp1 on
+
+
+
Define