Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix more links #281

Merged
merged 1 commit into from
Nov 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/datastore/dataset.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
14 changes: 7 additions & 7 deletions lib/datastore/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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}
Expand All @@ -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}
Expand Down Expand Up @@ -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}
Expand All @@ -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}
Expand All @@ -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}
Expand Down