[CDRIVER-106] couple of typos in C Driver documentation Created: 23/Nov/11 Updated: 19/Oct/16 Resolved: 26/Mar/12 |
|
| Status: | Closed |
| Project: | C Driver |
| Component/s: | None |
| Affects Version/s: | 0.4 |
| Fix Version/s: | 0.5 |
| Type: | Improvement | Priority: | Minor - P4 |
| Reporter: | Waitman Gobble | Assignee: | Kyle Banker |
| Resolution: | Done | Votes: | 0 |
| Labels: | documentation | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Environment: |
documentation change |
||
| Description |
|
Documentation update request (C Driver Tutorial) http://api.mongodb.org/c/current/tutorial.html The example code under the heading "Simple Queries" mongo_cursor_init( cursor, conn, "tutorial.persons" ); while( mongo_cursor_next( cursor ) == MONGO_OK ) { } should be mongo_cursor_init( cursor, conn, "tutorial.persons" ); while( mongo_cursor_next( cursor ) == MONGO_OK ) { } (note: missing semicolon after mongo_cursor_set_query, also "it" becomes "iterator") |
| Comments |
| Comment by auto [ 26/Mar/12 ] |
|
Author: {u'login': u'banker', u'name': u'Kyle Banker', u'email': u'kylebanker@gmail.com'}Message: |