From 4f2215fd98c971d909c7ab46ef033cd17698e6b6 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Tue, 7 Jun 2016 11:02:16 -0700 Subject: [PATCH] doc: fix minor nit introduced in readline.md PR-URL: https://github.com/nodejs/node/pull/7198 Reviewed-By: Julian Duque Reviewed-By: Anna Henningsen --- doc/api/readline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/readline.md b/doc/api/readline.md index 6ddbd1cdf6..448b109e4d 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -264,7 +264,7 @@ rl.question('What is your favorite food?', (answer) => { *Note*: The `callback` function passed to `rl.question()` does not follow the typical pattern of accepting an `Error` object or `null` as the first argument. -The `callback` is called with the provided answer as the only argument.git +The `callback` is called with the provided answer as the only argument. ### rl.resume()