From 539b307e27a82419a661156c32bbef513134468d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 20 Nov 2003 15:11:31 +0000 Subject: [PATCH] Typo fix reported by Stuka. --- docs/EXAMPLE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/EXAMPLE b/docs/EXAMPLE index d3b2cb18e..b5733ce38 100644 --- a/docs/EXAMPLE +++ b/docs/EXAMPLE @@ -248,7 +248,7 @@ message (and oftentimes that turns out to be the case :)) the supybot framework handles that entirely transparently to you. Do make sure, however, that you give irc.reply a string. It doesn't take anything else (sometimes even unicode fails!). That's why we have -"str(self.rnd.random())" instead of simply "self.rng.random()" -- we +"str(self.rng.random())" instead of simply "self.rng.random()" -- we had to give irc.reply a string. Anyway, now that we have an RNG, we have a need for seed! Of course,