@@ -35,7 +35,7 @@ var util = require('../common/util.js');
3535 * {@linkcode module:datastore/dataset#createQuery} and run via
3636 * {@linkcode module:datastore/dataset#runQuery}.**
3737 *
38- * *Reference: (http://goo.gl/Cag0r6)*
38+ * *[ Reference] (http://goo.gl/Cag0r6). *
3939 *
4040 * @constructor
4141 * @alias module:datastore/query
@@ -82,7 +82,7 @@ function Query(namespace, kinds) {
8282 *
8383 * *To filter by ancestors, see {@linkcode module:datastore/query#hasAncestor}.*
8484 *
85- * *Reference: (http://goo.gl/ENCx7e)*
85+ * *[ Reference] (http://goo.gl/ENCx7e). *
8686 *
8787 * @param {string } filter - Property + Operator (=, <, >, <=, >=).
8888 * @param {* } value - Value to compare property to.
@@ -116,7 +116,7 @@ Query.prototype.filter = function(filter, value) {
116116/**
117117 * Filter a query by ancestors.
118118 *
119- * *Reference: (http://goo.gl/1qfpkZ)*
119+ * *[ Reference] (http://goo.gl/1qfpkZ). *
120120 *
121121 * @param {Key } key - Key object to filter by.
122122 * @return {module:datastore/query }
@@ -134,7 +134,7 @@ Query.prototype.hasAncestor = function(key) {
134134 * Sort the results by a property name in ascending or descending order. By
135135 * default, an ascending sort order will be used.
136136 *
137- * *Reference: (http://goo.gl/mfegFR)*
137+ * *[ Reference] (http://goo.gl/mfegFR). *
138138 *
139139 * @param {string } property - Optional operator (+, -) and property to order by.
140140 * @return {module:datastore/query }
@@ -214,7 +214,7 @@ Query.prototype.start = function(start) {
214214/**
215215 * Set an ending cursor to a query.
216216 *
217- * *Reference: (http://goo.gl/WuTGRI)*
217+ * *[ Reference] (http://goo.gl/WuTGRI). *
218218 *
219219 * @param {string } cursorToken - The ending cursor token.
220220 * @return {module:datastore/query }
@@ -234,7 +234,7 @@ Query.prototype.end = function(end) {
234234/**
235235 * Set a limit on a query.
236236 *
237- * *Reference: (http://goo.gl/f0VZ0n)*
237+ * *[ Reference] (http://goo.gl/f0VZ0n). *
238238 *
239239 * @param {number } n - The number of results to limit the query to.
240240 * @return {module:datastore/query }
@@ -252,7 +252,7 @@ Query.prototype.limit = function(n) {
252252/**
253253 * Set an offset on a query.
254254 *
255- * *Reference: (http://goo.gl/f0VZ0n)*
255+ * *[ Reference] (http://goo.gl/f0VZ0n). *
256256 *
257257 * @param {number } n - The offset to start from after the start cursor.
258258 * @return {module:datastore/query }
0 commit comments