about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Doc/Zsh/params.yo5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 17a385fcb..c522dfa80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2021-05-03  Daniel Shahaf  <d.s@daniel.shahaf.name>
+
+	* 48767: Doc/Zsh/params.yo: docs: $SECONDS: Clarify what types
+	may be set
+
 2021-04-28  Jun-ichi Takimoto  <takimoto-j@kba.biglobe.ne.jp>
 
 	* 48702: Completion/Unix/Command/_pandoc: do not use cache,
diff --git a/Doc/Zsh/params.yo b/Doc/Zsh/params.yo
index a9044336f..dc28a45ae 100644
--- a/Doc/Zsh/params.yo
+++ b/Doc/Zsh/params.yo
@@ -845,8 +845,9 @@ will be the value that was assigned plus the number of seconds
 since the assignment.
 
 Unlike other special parameters, the type of the tt(SECONDS) parameter can
-be changed using the tt(typeset) command.  Only integer and one of the
-floating point types are allowed.  For example, `tt(typeset -F SECONDS)'
+be changed using the tt(typeset) command.  The type may be changed only
+to one of the floating point types or back to integer.  For example,
+`tt(typeset -F SECONDS)'
 causes the value to be reported as a floating point number.  The
 value is available to microsecond accuracy, although the shell may
 show more or fewer digits depending on the use of tt(typeset).  See