@@ -225,13 +225,13 @@ function REPLServer(prompt,
225
225
ObjectDefineProperty ( this , 'inputStream' , {
226
226
get : pendingDeprecation ?
227
227
deprecate ( ( ) => this . input ,
228
- 'repl.inputStream and repl.outputStream is deprecated. ' +
228
+ 'repl.inputStream and repl.outputStream are deprecated. ' +
229
229
'Use repl.input and repl.output instead' ,
230
230
'DEP0141' ) :
231
231
( ) => this . input ,
232
232
set : pendingDeprecation ?
233
233
deprecate ( ( val ) => this . input = val ,
234
- 'repl.inputStream and repl.outputStream is deprecated. ' +
234
+ 'repl.inputStream and repl.outputStream are deprecated. ' +
235
235
'Use repl.input and repl.output instead' ,
236
236
'DEP0141' ) :
237
237
( val ) => this . input = val ,
@@ -241,13 +241,13 @@ function REPLServer(prompt,
241
241
ObjectDefineProperty ( this , 'outputStream' , {
242
242
get : pendingDeprecation ?
243
243
deprecate ( ( ) => this . output ,
244
- 'repl.inputStream and repl.outputStream is deprecated. ' +
244
+ 'repl.inputStream and repl.outputStream are deprecated. ' +
245
245
'Use repl.input and repl.output instead' ,
246
246
'DEP0141' ) :
247
247
( ) => this . output ,
248
248
set : pendingDeprecation ?
249
249
deprecate ( ( val ) => this . output = val ,
250
- 'repl.inputStream and repl.outputStream is deprecated. ' +
250
+ 'repl.inputStream and repl.outputStream are deprecated. ' +
251
251
'Use repl.input and repl.output instead' ,
252
252
'DEP0141' ) :
253
253
( val ) => this . output = val ,
0 commit comments