From 234461f1f3e27b502c5dc45ce9e0d61104f30106 Mon Sep 17 00:00:00 2001 From: Zhuohuan LI Date: Fri, 4 Nov 2016 13:00:02 +0800 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a3fad3c..35d2ad38 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ Wechaty is a Bot Framework for Wechat **Personal** Account that helps you easy c # Example -Your first Wechaty Bot with only 6 lines javascript: +Your first Wechaty Bot with only 6 lines JavaScript: -```typescript +```javascript const Wechaty = require('wechaty') Wechaty.instance() // Singleton @@ -42,7 +42,7 @@ Wechaty.instance() // Singleton .init() ``` -This bot just log all the message to the console. Source code(TypeScript version) at [here](https://github.com/wechaty/wechaty/blob/master/example/roger-bot.ts). +This bot can log all message to console. Source code(TypeScript version) at [here](https://github.com/wechaty/wechaty/blob/master/example/roger-bot.ts). You can find more example from [Wiki](https://github.com/wechaty/wechaty/wiki/Example) and [Example Directory](https://github.com/wechaty/wechaty/blob/master/example/). -- GitLab