From c46576d90b31910235bced5a0e282c450cb9ed07 Mon Sep 17 00:00:00 2001 From: anseki Date: Thu, 21 Aug 2014 16:45:17 +0900 Subject: [PATCH] Typo: README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25a8a61..029bb21 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Why did I choose it? : + The best solution is [child_process.execSync](https://github.com/joyent/node/blob/master/doc/api/child_process.markdown#child_processexecsynccommand-options) in core modules of Node. But it is not supported by current version. + The good modules (native addon) for synchronous execution exist. But node-gyp can't compile those in some platforms or Node versions. -+ I think that the security is important more than the speed. Some modules have problem about security. (It don't protect data.) I think that the speed is not needed usually, because readlineSync is used while user types keys. ++ I think that the security is important more than the speed. Some modules have problem about security. (Those don't protect data.) I think that the speed is not needed usually, because readlineSync is used while user types keys. Someday, I may rewrite readlineSync to use child_process.execSync, or safety module.