Skip to content

Commit 0a018d3

Browse files
Merge pull request CamDavidsonPilon#123 from JensRantil/minor-comment-fix
Correct comment on what code actually does
2 parents ac95fb0 + 7011560 commit 0a018d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chapter1_Introduction/Chapter1_Introduction.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@
652652
"def lambda_(tau=tau, lambda_1=lambda_1, lambda_2=lambda_2):\n",
653653
" out = np.zeros(n_count_data)\n",
654654
" out[:tau] = lambda_1 # lambda before tau is lambda1\n",
655-
" out[tau:] = lambda_2 # lambda after tau is lambda2\n",
655+
" out[tau:] = lambda_2 # lambda after (and including) tau is lambda2\n",
656656
" return out"
657657
],
658658
"language": "python",

0 commit comments

Comments
 (0)