From 2910de1bc55ef3a0c328a4828eb11c334f80761c Mon Sep 17 00:00:00 2001 From: Stephen Sawchuk Date: Wed, 1 Apr 2015 10:25:36 -0400 Subject: [PATCH] docs: fix markup for dox. --- lib/bigquery/index.js | 2 +- lib/bigquery/table.js | 4 ++-- lib/storage/bucket.js | 4 ++-- lib/storage/file.js | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/bigquery/index.js b/lib/bigquery/index.js index 24f308cad8e..7c13b99de04 100644 --- a/lib/bigquery/index.js +++ b/lib/bigquery/index.js @@ -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. * // * // We will create a table with the correct schema, import the public CSV file * // into that table, and query it for data. diff --git a/lib/bigquery/table.js b/lib/bigquery/table.js index 3f0e9e92809..3e92bd5ca8c 100644 --- a/lib/bigquery/table.js +++ b/lib/bigquery/table.js @@ -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". diff --git a/lib/storage/bucket.js b/lib/storage/bucket.js index 77b1fca3231..c7db7235a5c 100644 --- a/lib/storage/bucket.js +++ b/lib/storage/bucket.js @@ -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. diff --git a/lib/storage/file.js b/lib/storage/file.js index bb6e3245491..60c8462e65b 100644 --- a/lib/storage/file.js +++ b/lib/storage/file.js @@ -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. *