Skip to content

Commit ffefe6b

Browse files
author
Robert-Jan Huijsman
authored
Remove a confusing (stale copy-paste) comment in datastore.ts (#140)
1 parent ce31f95 commit ffefe6b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/providers/datastore.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export const provider = (new Buffer('Y2xvdWQuZmlyc3RvcmU=', 'base64')).toString(
2828
/** @internal */
2929
export const defaultDatabase = '(default)';
3030

31-
/** Handle events in the Firebase Auth user lifecycle. */
3231
export function database(database: string = defaultDatabase) {
3332
return new DatabaseBuilder(`projects/${process.env.GCLOUD_PROJECT}/databases/${database}`);
3433
}
@@ -43,7 +42,7 @@ export function document(path: string) {
4342

4443
export class DatabaseBuilder {
4544
/** @internal */
46-
constructor(private resource: string) {}
45+
constructor(private resource: string) { }
4746

4847
namespace(namespace: string) {
4948
return new NamespaceBuilder(`${this.resource}/documents@${namespace}`);
@@ -56,7 +55,7 @@ export class DatabaseBuilder {
5655

5756
export class NamespaceBuilder {
5857
/** @internal */
59-
constructor(private resource: string) {}
58+
constructor(private resource: string) { }
6059

6160
document(path: string) {
6261
return new DocumentBuilder(`${this.resource}/${path}`);

0 commit comments

Comments
 (0)