From 13ce57a254e999968a9bf0978f3c55cae9dff7fb Mon Sep 17 00:00:00 2001 From: Jerry Wu Date: Fri, 5 Apr 2024 14:48:48 +0800 Subject: [PATCH] Update param.md (#6670) The interval should range from 5 to 15 instead of 5 to 10. --- doc/explanation/dependencies/param.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/explanation/dependencies/param.md b/doc/explanation/dependencies/param.md index 5f920acc35..e9471aa77d 100644 --- a/doc/explanation/dependencies/param.md +++ b/doc/explanation/dependencies/param.md @@ -99,7 +99,7 @@ class P(param.Parameterized): The class `B` below is created with 4 *Parameters*: - `t` is a `Number` *Parameter* that only accepts Python `int` and `float` values. -- `i` is an `Integer` *Parameter* that only accepts Python `int` values and that must be within the interval `[5, 10]` +- `i` is an `Integer` *Parameter* that only accepts Python `int` values and that must be within the interval `[5, 15]` - `s` is a `String` *Parameter* that only accepts Python `str` values and is documented with `doc`. - `option` is a `Selector` *Parameter* that only accepts one of the values listed in `objects`.