Merge pull request #290 from cclauss/patch-2

Fix typo in prob_dist_visuals.py
This commit is contained in:
Grant Sanderson 2018-09-11 11:43:02 -07:00 committed by GitHub
commit 69013ee8b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -289,7 +289,7 @@ class ProbabilityDistributions(PiCreatureScene):
outcome_braces = VGroup(*[
Brace(outcome, DOWN) for outcome in outcomes
])
outcome_labels = VGroup(*[i
outcome_labels = VGroup(*[
TexMobject("{1\over 8}").scale(0.5).next_to(brace, DOWN)
for brace in outcome_braces
])