From 11c0ab85815f6fdc4a89c3552161ac2d12c338de Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 09:55:53 -0700 Subject: [PATCH] fix(forecaster): correct 'occured' -> 'occurred' in slope-delta helper docstring A docstring inside the slope-delta matrix helper in python/prophet/forecaster.py used 'changes occured in training data'. Doc-only change; ast.parse stays clean. --- python/prophet/forecaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/prophet/forecaster.py b/python/prophet/forecaster.py index 2c37b5e95..d3b1aef96 100644 --- a/python/prophet/forecaster.py +++ b/python/prophet/forecaster.py @@ -1892,7 +1892,7 @@ def _make_historical_mat_time( np.ndarray[tuple[int], np.dtype[np.float64]], ]: """ - Creates a matrix of slope-deltas where these changes occured in training data according to the trained prophet obj + Creates a matrix of slope-deltas where these changes occurred in training data according to the trained prophet obj """ if single_diff is None: single_diff = np.diff(t_time).mean()