Github user spmallette commented on the pull request:
https://github.com/apache/tinkerpop/commit/2dbf66239e24b4519727333296f77a9d6fac9223#commitcomment-17847078
In docs/src/recipes/centrality.asciidoc:
In docs/src/recipes/centrality.asciidoc on line 147:
@okram figured it out - no problems here:
```text
gremlin>
g.V().repeat(groupCount('m').by('name').out().timeLimit(100)).times(5).cap('m').unfold().order().by(values,decr).limit(10)
==>PLAYING IN THE BAND=1012771
==>ME AND MY UNCLE=954631
==>JACK STRAW=949286
==>EL PASO=891196
==>TRUCKING=886590
==>PROMISED LAND=854660
==>CHINA CAT SUNFLOWER=838159
==>LOOKS LIKE RAIN=777266
==>CUMBERLAND BLUES=774697
==>SCARLET BEGONIAS=761485
gremlin>
g.V().repeat(groupCount('m').by('name').out()).times(5).cap('m').unfold().order().by(values,decr).limit(10)
==>PLAYING IN THE BAND=8758598
==>ME AND MY UNCLE=8214246
==>JACK STRAW=8173882
==>EL PASO=7666994
==>TRUCKING=7643494
==>PROMISED LAND=7339027
==>CHINA CAT SUNFLOWER=7322213
==>CUMBERLAND BLUES=6730838
==>RAMBLE ON ROSE=6676667
==>LOOKS LIKE RAIN=6674121
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---