@@ -305,6 +305,7 @@ interface Constructor {
305305 * @throws first argument must be an integer
306306 * @throws second argument must be an integer
307307 * @throws third argument must be an integer
308+ * @throws third argument cannot be zero
308309 * @returns Slice instance
309310 *
310311 * @example
@@ -330,6 +331,7 @@ interface Constructor {
330331 * @param step - index increment
331332 * @throws second argument must be an integer
332333 * @throws third argument must be an integer
334+ * @throws third argument cannot be zero
333335 * @returns Slice instance
334336 *
335337 * @example
@@ -368,6 +370,7 @@ interface Constructor {
368370 * @param step - index increment
369371 * @throws first argument must be an integer
370372 * @throws third argument must be an integer
373+ * @throws third argument cannot be zero
371374 * @returns Slice instance
372375 *
373376 * @example
@@ -405,6 +408,7 @@ interface Constructor {
405408 * @param stop - ending index (exclusive)
406409 * @param step - index increment
407410 * @throws third argument must be an integer
411+ * @throws third argument cannot be zero
408412 * @returns Slice instance
409413 *
410414 * @example
@@ -748,6 +752,7 @@ interface Constructor {
748752 * @throws first argument must be an integer
749753 * @throws second argument must be an integer
750754 * @throws third argument must be an integer
755+ * @throws third argument cannot be zero
751756 * @returns Slice instance
752757 *
753758 * @example
@@ -773,6 +778,7 @@ interface Constructor {
773778 * @param step - index increment
774779 * @throws second argument must be an integer
775780 * @throws third argument must be an integer
781+ * @throws third argument cannot be zero
776782 * @returns Slice instance
777783 *
778784 * @example
@@ -811,6 +817,7 @@ interface Constructor {
811817 * @param step - index increment
812818 * @throws first argument must be an integer
813819 * @throws third argument must be an integer
820+ * @throws third argument cannot be zero
814821 * @returns Slice instance
815822 *
816823 * @example
@@ -848,6 +855,7 @@ interface Constructor {
848855 * @param stop - ending index (exclusive)
849856 * @param step - index increment
850857 * @throws third argument must be an integer
858+ * @throws third argument cannot be zero
851859 * @returns Slice instance
852860 *
853861 * @example
@@ -924,6 +932,7 @@ interface Constructor {
924932* @throws first argument must be an integer or null
925933* @throws second argument must be an integer or null
926934* @throws third argument must be an integer or null
935+ * @throws third argument cannot be zero
927936* @returns Slice instance
928937*
929938* @example
0 commit comments