aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/core/src/firebase
diff options
context:
space:
mode:
authorGravatar rsgowman <rgowman@google.com>2018-06-22 16:17:25 -0400
committerGravatar GitHub <noreply@github.com>2018-06-22 16:17:25 -0400
commit137ce37363d72ac1d643ea9f93bc6e6665367e57 (patch)
treec96389a43420fca8cf17387bfcd244f49f716990 /Firestore/core/src/firebase
parent2e4855911c436b608eb6e1372ac26ca7165eec4e (diff)
Fix a few implicit converstion warnings (#1439)
Were showing up in xcode build (but not cmake build)
Diffstat (limited to 'Firestore/core/src/firebase')
-rw-r--r--Firestore/core/src/firebase/firestore/local/local_serializer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/core/src/firebase/firestore/local/local_serializer.h b/Firestore/core/src/firebase/firestore/local/local_serializer.h
index c1b4761..c52e324 100644
--- a/Firestore/core/src/firebase/firestore/local/local_serializer.h
+++ b/Firestore/core/src/firebase/firestore/local/local_serializer.h
@@ -48,7 +48,7 @@ class LocalSerializer {
* @brief Encodes a MaybeDocument model to the equivalent bytes for local
* storage.
*
- * @param document the model to convert.
+ * @param maybe_doc the model to convert.
* @param[out] out_bytes A buffer to place the output. The bytes will be
* appended to this vector.
* @return A Status, which if not ok(), indicates what went wrong. Note that