Skip to content

Commit

Permalink
Fix typo in MongoDB Connector's document
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr authored and kokosing committed Jan 13, 2018
1 parent e190768 commit 41b077a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions presto-docs/src/main/sphinx/connector/mongodb.rst
Expand Up @@ -237,7 +237,7 @@ MongoDB collection has the special field ``_id``. The connector tries to follow
INSERT INTO orders VALUES(1, 'bad', 50.0, current_date);
INSERT INTO orders VALUES(2, 'good', 100.0, current_date);
SELECT _id, * FROM orders3;
SELECT _id, * FROM orders;
.. code-block:: none
Expand All @@ -249,7 +249,7 @@ MongoDB collection has the special field ``_id``. The connector tries to follow
.. code-block:: sql
SELECT _id, * FROM orders3 WHERE _id = ObjectId('55b151633864d6438c61a9ce');
SELECT _id, * FROM orders WHERE _id = ObjectId('55b151633864d6438c61a9ce');
.. code-block:: none
Expand Down

0 comments on commit 41b077a

Please sign in to comment.