diff --git a/doc/games/dota.md b/doc/games/dota.md index 1c154e4527..cfbd7940bf 100644 --- a/doc/games/dota.md +++ b/doc/games/dota.md @@ -7,7 +7,7 @@ Available since version 1.9.0. Faker::Games::Dota.hero #=> "Abaddon" # Random item -Faker::Games::Dota.item #=> "You have called death upon yourself." +Faker::Games::Dota.item #=> "Armlet of Mordiggian" # Random team Faker::Games::Dota.team #=> "Evil Geniuses" @@ -17,6 +17,6 @@ Faker::Games::Dota.player #=> "Dendi" # Random quote # by default if you don't pass the hero parameter, the quote method will set hero as 'abbadon' -Faker::Games::Dota.quote #=> "Easy now, this stuff is explosive!" +Faker::Games::Dota.quote #=> "You have called death upon yourself." Faker::Games::Dota.quote(hero: 'alchemist') #=> "Better living through alchemy!" ```