From 14617c4ef7b89998e98e833ad5d11760e03d9bad Mon Sep 17 00:00:00 2001 From: Nikita Misharin Date: Wed, 22 May 2019 22:37:41 +0400 Subject: [PATCH] Fix Dota README (#1617) > You have called death upon yourself. Is a quote > Easy now, this stuff is explosive! Is a quote by alchemist --- doc/games/dota.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!" ```