Skip to content

Commit 09566ed

Browse files
authored
Use // instead of /** */
1 parent bdcc8fc commit 09566ed

File tree

1 file changed

+5
-6
lines changed
  • packages/tracing/src/integrations

1 file changed

+5
-6
lines changed

packages/tracing/src/integrations/mysql.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@ export class Mysql implements Integration {
3939
return;
4040
}
4141

42-
/**
43-
* function (query, callback) => void
44-
* function (query, params, callback) => void
45-
* function (query) => Promise
46-
* function (query, params) => Promise
47-
*/
42+
// The original function will have one of these signatures:
43+
// function (query, callback) => void
44+
// function (query, params, callback) => void
45+
// function (query) => Promise
46+
// function (query, params) => Promise
4847
fill(connection, 'query', function(orig: () => void | Promise<unknown>) {
4948
return function(this: unknown, options: unknown, values: unknown, callback: unknown) {
5049
const scope = getCurrentHub().getScope();

0 commit comments

Comments
 (0)