Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
Fix: README
Browse files Browse the repository at this point in the history
  • Loading branch information
anseki committed May 15, 2015
1 parent cbd3b73 commit cac20d6
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 96 deletions.
24 changes: 12 additions & 12 deletions README-Deprecated.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ The following methods and options are deprecated.


### <a name="deprecated_methods_and_options-setprint_method"></a>`setPrint` method ### <a name="deprecated_methods_and_options-setprint_method"></a>`setPrint` method


Use the [`print`](#basic_options-print) option. Use the [`print`](README.md#basic_options-print) option.
For the [Default Options](#basic_options), use: For the [Default Options](README.md#basic_options), use:


```js ```js
readlineSync.setDefaultOptions({print: value}); readlineSync.setDefaultOptions({print: value});
Expand All @@ -22,8 +22,8 @@ readlineSync.setPrint(value);


### <a name="deprecated_methods_and_options-setprompt_method"></a>`setPrompt` method ### <a name="deprecated_methods_and_options-setprompt_method"></a>`setPrompt` method


Use the [`prompt`](#basic_options-prompt) option. Use the [`prompt`](README.md#basic_options-prompt) option.
For the [Default Options](#basic_options), use: For the [Default Options](README.md#basic_options), use:


```js ```js
readlineSync.setDefaultOptions({prompt: value}); readlineSync.setDefaultOptions({prompt: value});
Expand All @@ -37,8 +37,8 @@ readlineSync.setPrompt(value);


### <a name="deprecated_methods_and_options-setencoding_method"></a>`setEncoding` method ### <a name="deprecated_methods_and_options-setencoding_method"></a>`setEncoding` method


Use the [`encoding`](#basic_options-encoding) option. Use the [`encoding`](README.md#basic_options-encoding) option.
For the [Default Options](#basic_options), use: For the [Default Options](README.md#basic_options), use:


```js ```js
readlineSync.setDefaultOptions({encoding: value}); readlineSync.setDefaultOptions({encoding: value});
Expand All @@ -52,8 +52,8 @@ readlineSync.setEncoding(value);


### <a name="deprecated_methods_and_options-setmask_method"></a>`setMask` method ### <a name="deprecated_methods_and_options-setmask_method"></a>`setMask` method


Use the [`mask`](#basic_options-mask) option. Use the [`mask`](README.md#basic_options-mask) option.
For the [Default Options](#basic_options), use: For the [Default Options](README.md#basic_options), use:


```js ```js
readlineSync.setDefaultOptions({mask: value}); readlineSync.setDefaultOptions({mask: value});
Expand All @@ -67,8 +67,8 @@ readlineSync.setMask(value);


### <a name="deprecated_methods_and_options-setbuffersize_method"></a>`setBufferSize` method ### <a name="deprecated_methods_and_options-setbuffersize_method"></a>`setBufferSize` method


Use the [`bufferSize`](#basic_options-buffersize) option. Use the [`bufferSize`](README.md#basic_options-buffersize) option.
For the [Default Options](#basic_options), use: For the [Default Options](README.md#basic_options), use:


```js ```js
readlineSync.setDefaultOptions({bufferSize: value}); readlineSync.setDefaultOptions({bufferSize: value});
Expand All @@ -82,8 +82,8 @@ readlineSync.setBufferSize(value);


### <a name="deprecated_methods_and_options-noechoback_option"></a>`noEchoBack` option ### <a name="deprecated_methods_and_options-noechoback_option"></a>`noEchoBack` option


Use [`hideEchoBack`](#basic_options-hideechoback) option instead of it. Use [`hideEchoBack`](README.md#basic_options-hideechoback) option instead of it.


### <a name="deprecated_methods_and_options-notrim_option"></a>`noTrim` option ### <a name="deprecated_methods_and_options-notrim_option"></a>`noTrim` option


Use [`keepWhitespace`](#basic_options-keepwhitespace) option instead of it. Use [`keepWhitespace`](README.md#basic_options-keepwhitespace) option instead of it.
Loading

0 comments on commit cac20d6

Please sign in to comment.