소스 검색

Fixed a README typo => new version.

Eugene Lazutkin 7 년 전
부모
커밋
ae418d3a56
3개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 2
      README.md
  2. 1 1
      package-lock.json
  3. 1 1
      package.json

+ 3 - 2
README.md

@@ -68,7 +68,7 @@ The constructor accepts two parameters:
           * If it is `undefined` or `null`, no value shall be passed.
           * Otherwise, the value will be passed to the next stream.
       * Special value:
-        * If it is an instance of [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) or "thenable" (an object with a method called `then()`), it will be waited for. Its result should be a special value.
+        * If it is an instance of [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) or "thenable" (an object with a method called `then()`), it will be waited for. Its result should be a regular value.
         * If it is an instance of a generator or "nextable" (an object with a method called `next()`), it will be iterated according to the [generator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator) protocol. The results should be regular values.
       * Any thrown exception will be catched and passed to a callback function effectively generating an error event.
   * If it is an asynchronous function, it can return a regular value.
@@ -81,7 +81,8 @@ The constructor accepts two parameters:
 
 ## Release History
 
-- 1.0.0 *the initial release.*
+- 1.0.1 *Fixed the README.*
+- 1.0.0 *The initial release.*
 
 [npm-image]:      https://img.shields.io/npm/v/stream-chain.svg
 [npm-url]:        https://npmjs.org/package/stream-chain

+ 1 - 1
package-lock.json

@@ -1,6 +1,6 @@
 {
   "name": "stream-chain",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "stream-chain",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "Chain functions as transform streams.",
   "main": "main.js",
   "scripts": {