From 20d7be28e22fdc3dabb937862e32c5ee736000af Mon Sep 17 00:00:00 2001 From: Stephen Sawchuk Date: Wed, 5 Nov 2014 13:44:19 -0500 Subject: [PATCH] docs: fix more links --- lib/datastore/dataset.js | 2 +- lib/datastore/query.js | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/datastore/dataset.js b/lib/datastore/dataset.js index cacbb0f95b0..73bcdc814c4 100644 --- a/lib/datastore/dataset.js +++ b/lib/datastore/dataset.js @@ -155,7 +155,7 @@ Dataset.prototype.key = function(options) { * Create a query from the current dataset to query the specified kinds, scoped * to the namespace provided at the initialization of the dataset. * - * *Dataset query reference: (http://goo.gl/Cag0r6)* + * *[Reference](http://goo.gl/Cag0r6).* * * @borrows {module:datastore/query} as createQuery * @see {module:datastore/query} diff --git a/lib/datastore/query.js b/lib/datastore/query.js index 5c1e849b805..cc0288dc4bd 100644 --- a/lib/datastore/query.js +++ b/lib/datastore/query.js @@ -35,7 +35,7 @@ var util = require('../common/util.js'); * {@linkcode module:datastore/dataset#createQuery} and run via * {@linkcode module:datastore/dataset#runQuery}.** * - * *Reference: (http://goo.gl/Cag0r6)* + * *[Reference](http://goo.gl/Cag0r6).* * * @constructor * @alias module:datastore/query @@ -82,7 +82,7 @@ function Query(namespace, kinds) { * * *To filter by ancestors, see {@linkcode module:datastore/query#hasAncestor}.* * - * *Reference: (http://goo.gl/ENCx7e)* + * *[Reference](http://goo.gl/ENCx7e).* * * @param {string} filter - Property + Operator (=, <, >, <=, >=). * @param {*} value - Value to compare property to. @@ -116,7 +116,7 @@ Query.prototype.filter = function(filter, value) { /** * Filter a query by ancestors. * - * *Reference: (http://goo.gl/1qfpkZ)* + * *[Reference](http://goo.gl/1qfpkZ).* * * @param {Key} key - Key object to filter by. * @return {module:datastore/query} @@ -134,7 +134,7 @@ Query.prototype.hasAncestor = function(key) { * Sort the results by a property name in ascending or descending order. By * default, an ascending sort order will be used. * - * *Reference: (http://goo.gl/mfegFR)* + * *[Reference](http://goo.gl/mfegFR).* * * @param {string} property - Optional operator (+, -) and property to order by. * @return {module:datastore/query} @@ -214,7 +214,7 @@ Query.prototype.start = function(start) { /** * Set an ending cursor to a query. * - * *Reference: (http://goo.gl/WuTGRI)* + * *[Reference](http://goo.gl/WuTGRI).* * * @param {string} cursorToken - The ending cursor token. * @return {module:datastore/query} @@ -234,7 +234,7 @@ Query.prototype.end = function(end) { /** * Set a limit on a query. * - * *Reference: (http://goo.gl/f0VZ0n)* + * *[Reference](http://goo.gl/f0VZ0n).* * * @param {number} n - The number of results to limit the query to. * @return {module:datastore/query} @@ -252,7 +252,7 @@ Query.prototype.limit = function(n) { /** * Set an offset on a query. * - * *Reference: (http://goo.gl/f0VZ0n)* + * *[Reference](http://goo.gl/f0VZ0n).* * * @param {number} n - The offset to start from after the start cursor. * @return {module:datastore/query}