Merge branch 'master' of github.com:Azure/azure-documentdb-node

This commit is contained in:
Ryan CrawCour 2015-08-16 23:34:31 -07:00
Родитель d8b5892d64 4aae8ce3a0
Коммит c31bb735df
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -194,7 +194,7 @@ function useManualIndexing(callback) {
//documentClient.createDocument() takes RequestOptions as 3rd parameter.
//One of these options is indexingDirectives which can be include, or exclude
//we're using include this time to manually index this particular document
console.log('Create document, but exclude from index')
console.log('Create document, and explicitly include in index')
var docSpec = { id : 'doc', foo : "bar" };
client.createDocument(collLink, docSpec, { indexingDirective: 'include' }, function (err, document) {
if (err) {