aboutsummaryrefslogtreecommitdiff
path: root/example/echo.scm
diff options
context:
space:
mode:
Diffstat (limited to 'example/echo.scm')
-rw-r--r--example/echo.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/example/echo.scm b/example/echo.scm
index 2e190a7..90d0af5 100644
--- a/example/echo.scm
+++ b/example/echo.scm
@@ -25,8 +25,8 @@
chat_id: chat_id
text: text)))
-(telebot:pollUpdates token
- (lambda (u)
- (if (telebot:is-message? u)
- (begin (print-message u)
- (echo-message u)))))
+(telebot:poll-updates token
+ (lambda (u)
+ (if (telebot:is-message? u)
+ (begin (print-message u)
+ (echo-message u)))))