Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit d75562e

Browse files
committed
Remove ??? from comment since it is noise for grep
1 parent e5d4e19 commit d75562e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/nodejs-v14/src/main/scala/io/scalajs/nodejs/net/package.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ package object net {
108108
*
109109
* See also: the return values of socket.write()
110110
* @param callback the callback
111-
* @example socket.on("drain", function(???) { ... })
111+
* @example socket.on("drain", function() { ... })
112112
*/
113113
@inline def onDrain(callback: () => Any): T = socket.on("drain", callback)
114114

@@ -147,7 +147,7 @@ package object net {
147147
*
148148
* See also: socket.setTimeout()
149149
* @param callback the callback
150-
* @example socket.on("timeout", function(???) { ... })
150+
* @example socket.on("timeout", function() { ... })
151151
*/
152152
@inline def onTimeout(callback: js.Function): T = socket.on("timeout", callback)
153153
}

0 commit comments

Comments
 (0)