Skip to content

Commit 20d7be2

Browse files
docs: fix more links
1 parent 383b4e5 commit 20d7be2

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/datastore/dataset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Dataset.prototype.key = function(options) {
155155
* Create a query from the current dataset to query the specified kinds, scoped
156156
* to the namespace provided at the initialization of the dataset.
157157
*
158-
* *Dataset query reference: (http://goo.gl/Cag0r6)*
158+
* *[Reference](http://goo.gl/Cag0r6).*
159159
*
160160
* @borrows {module:datastore/query} as createQuery
161161
* @see {module:datastore/query}

lib/datastore/query.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)