This is an automated email from the ASF dual-hosted git repository.

vongosling pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-python.git


The following commit(s) were added to refs/heads/master by this push:
     new 477e580  Update Introduction.md
477e580 is described below

commit 477e58024a3ee221c7f9e5fcf9e4dc98345adc10
Author: von gosling <[email protected]>
AuthorDate: Thu Dec 6 15:55:14 2018 +0800

    Update Introduction.md
---
 doc/Introduction.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/Introduction.md b/doc/Introduction.md
index 980269b..e19ecaa 100644
--- a/doc/Introduction.md
+++ b/doc/Introduction.md
@@ -30,9 +30,9 @@
     sudo yum install boost-python
     sudo yum install boost-python-devel
     ```
-    3. [librocketmq](https://github.com/apache/rocketmq-client-cpp),choose one 
method below:
+    3. [librocketmq](https://github.com/apache/rocketmq-client-cpp), choose 
one method below:
       
-    - make and install the rocketmq library 
manually,[Here](https://github.com/apache/rocketmq-client-cpp)
+    - make and install the rocketmq library manually from 
[here](https://github.com/apache/rocketmq-client-cpp)
          
     - quick install
     ```
@@ -86,7 +86,7 @@
   ```
 - producer must invoke following interface:
   ```
-  - producer =CreateProducer("please_rename_unique_group_name");
+  - producer = CreateProducer("please_rename_unique_group_name");
   - SetProducerNameServerAddress(producer,"please_rename_unique_name_server")
   - StartProducer(producer)
   - SendMessageSync(producer,msg)
@@ -105,7 +105,7 @@
   ```
 - pushconsumer must invoke following interface:
   ```
-  - consumer =CreatePushConsumer("please_rename_unique_group_name_1");
+  - consumer = CreatePushConsumer("please_rename_unique_group_name_1");
   - 
SetPushConsumerNameServerAddress(consumer,"please_rename_unique_name_server")
   - Subscribe(consumer, "your_topic", "*")
   - RegisterMessageCallback(consumer,consumerMessage)
@@ -118,4 +118,4 @@
 - sync producer
   - python testProducer.py
 - push consumer
-  - python testConsumer.py
\ No newline at end of file
+  - python testConsumer.py

Reply via email to