Skip to content

Commit

Permalink
Add missing comma, thanks Sandra
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed Sep 6, 2015
1 parent 144b10d commit 46b9e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ This is a much more complicated question that's going to pull together a lot of
state_totals = with_years_in_prison.group_by('state')
medians = state_totals.aggregate([
('years_in_prison', agate.Length(), 'count')
('years_in_prison', agate.Length(), 'count'),
('years_in_prison', agate.Median(), 'median_years_in_prison')
])
Expand Down

0 comments on commit 46b9e87

Please sign in to comment.