aboutsummaryrefslogtreecommitdiff
path: root/src/fields/DocumentReference.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-06 01:43:09 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-06 01:43:09 -0500
commit84eea14a86265ce0585342d9f3a3c4107c02df17 (patch)
treed72dbbed8b38ef7387c662ec37a73c9c7ac890fb /src/fields/DocumentReference.ts
parentf201a0689495263bb381ba738a8fb95c41c7d0f2 (diff)
Simplified function names in Document class
Diffstat (limited to 'src/fields/DocumentReference.ts')
-rw-r--r--src/fields/DocumentReference.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/DocumentReference.ts b/src/fields/DocumentReference.ts
index f4f933848..10dac9f92 100644
--- a/src/fields/DocumentReference.ts
+++ b/src/fields/DocumentReference.ts
@@ -16,7 +16,7 @@ export class DocumentReference extends Field {
}
Dereference(): Opt<Field> {
- return this.document.GetField(this.key);
+ return this.document.Get(this.key);
}
DereferenceToRoot(): Opt<Field> {