Skip to content

Commit d455c29

Browse files
committed
unnecessary slashes
1 parent f004ead commit d455c29

File tree

1 file changed

+3
-3
lines changed
  • packages/mongodb-ts-autocomplete/src

1 file changed

+3
-3
lines changed

packages/mongodb-ts-autocomplete/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export default class MongoDBAutocompleter {
169169

170170
getConnectionCode(connectionKey: string): string {
171171
return `
172-
/// <reference path="/shell-api.d.ts" />
172+
/// <reference path="shell-api.d.ts" />
173173
174174
export {};
175175
@@ -190,8 +190,8 @@ declare global {
190190

191191
const databaseName = this.getActiveConnection().getCurrentDatabaseName();
192192
return `
193-
/// <reference path="/shell-api.d.ts" />
194-
/// <reference path="/${this.currentConnectionKey}.d.ts" />
193+
/// <reference path="shell-api.d.ts" />
194+
/// <reference path="${this.currentConnectionKey}.d.ts" />
195195
196196
export {}; // turns this into an "external module"
197197

0 commit comments

Comments
 (0)