README in rseg-0.1.6 vs README in rseg-0.1.7
- old
+ new
@@ -11,11 +11,11 @@
1. Inline mode
> require 'rubygems'
> require 'rseg'
-> RSeg.segment("需要分词的文章")
+> Rseg.segment("需要分词的文章")
['需要', '分词', '的', '文章']
The first call to Rseg#segment will need about 30 seconds to load the dictionary, the second call will be very fast, you can also call Rseg#load to load dictionaries manually.
2. C/S mode
@@ -33,11 +33,11 @@
You can also access server with the Rseg#remote_segment
$ irb
> require 'rubygems'
> require 'rseg'
-> RSeg.remote_segment("需要分词的文章") # This will be very fast
+> Rseg.remote_segment("需要分词的文章") # This will be very fast
['需要', '分词', '的', '文章']
Performance
========
About 5M character/s on my Macbook (Intel Core 2 Duo 2GHz/4G mem).
@@ -52,6 +52,6 @@
The codes and others in Rseg are licensed under MIT license.
Feedback
========
-All feedback are welcome, Yuanyi Zhang(zhangyuanyi#gmail.com)
\ No newline at end of file
+All feedback are welcome, Yuanyi Zhang(zhangyuanyi#gmail.com)