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 markup for dox. #475

Merged
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/bigquery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ var SCOPES = ['https://www.googleapis.com/auth/bigquery'];
* //-
* // In the following examples from this page and the other modules (Dataset,
* // Table, etc.), we are going to be using a dataset from
* // [data.gov](http://goo.gl/f2SXcb) of higher education institutions.
* // data.gov (http://goo.gl/f2SXcb) of higher education institutions.

This comment was marked as spam.

* //
* // We will create a table with the correct schema, import the public CSV file
* // into that table, and query it for data.
Expand Down
4 changes: 2 additions & 2 deletions lib/bigquery/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ Table.prototype.delete = function(callback) {
/**
* Export table to Google Cloud Storage.
*
* @param {module:storage/file|module:storage/file[]} destination - Where the
* file should be exported to.
* @param {module:storage/file} destination - Where the file should be exported
* to.
* @param {object=} options - The configuration object.
* @param {string} options.format - The format to export the data in. Allowed
* options are "CSV", "JSON", or "AVRO". Default: "CSV".
Expand Down
4 changes: 2 additions & 2 deletions lib/storage/bucket.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ function Bucket(storage, name) {
* @throws if no destination is provided.
* @throws if a content type cannot be determined for the destination file.
*
* @param {string[]|module:storage/file[]} sources - The source files that will
* be combined.
* @param {string[]|module:storage/file} sources - The source files that will be
* combined.
* @param {string|module:storage/file} destination - The file you would like the
* source files combined into.
* @param {function=} callback - The callback function.
Expand Down
2 changes: 1 addition & 1 deletion lib/storage/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function File(bucket, name, metadata) {
*
* @throws {Error} If the destination file is not provided.
*
* @param {string|{module:storage/bucket}|{module:storage/file}} destination -
* @param {string|module:storage/bucket|module:storage/file} destination -
* Destination file.
* @param {function=} callback - The callback function.
*
Expand Down