summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/theo.go b/theo.go
index 5e5658d..82f1a37 100644
--- a/theo.go
+++ b/theo.go
@@ -126,8 +126,8 @@ func init() {
rand.Seed(n)
}
-// Theo returns random quote
-func Theo() string {
+// Quote returns random quote
+func Quote() string {
n := rand.Intn(len(talk))
return talk[n]
}