Skip to content

Commit

Permalink
Fix groupreduce example
Browse files Browse the repository at this point in the history
Fixes #51
  • Loading branch information
andyferris committed Jun 12, 2019
1 parent 59773eb commit fc1247a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/man/group.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Sometimes we can perform a split-apply-combine strategy by streaming just once o
For example, we can sum up the ages corresponding to each family name.

```julia
julia> groupreduce(getproperty(:lastname), +, getproperty(:age), t)
julia> groupreduce(getproperty(:lastname), getproperty(:age), +, t)
Dict{String,Int64} with 4 entries:
"King" => 54
"Williams" => 83
Expand Down

0 comments on commit fc1247a

Please sign in to comment.