@@ -46,39 +46,19 @@ var Table = require('./table.js');
4646var PKG = require ( '../package.json' ) ;
4747
4848/**
49- * The examples below will demonstrate the different usage patterns your app may
50- * need to support to retrieve a BigQuery object.
49+ * In the following examples from this page and the other modules (`Dataset`,
50+ * `Table`, etc.), we are going to be using a dataset from
51+ * [data.gov](http://goo.gl/f2SXcb) of higher education institutions.
52+ *
53+ * We will create a table with the correct schema, import the public CSV file
54+ * into that table, and query it for data.
5155 *
5256 * @alias module:bigquery
5357 * @constructor
5458 *
55- * @classdesc
56- * The object returned from `gcloud.bigquery` gives you complete access to and
57- * control of your BigQuery datasets. You can work with existing ones, by using
58- * the `dataset` method, or create new ones with `createDataset`.
59- *
60- * To learn more about BigQuery, see
61- * [What is BigQuery?](https://cloud.google.com/bigquery/what-is-bigquery)
59+ * @resource [What is BigQuery?]{@link https://cloud.google.com/bigquery/what-is-bigquery}
6260 *
6361 * @param {object } options - [Configuration object](#/docs).
64- *
65- * @example
66- * var gcloud = require('google-cloud')({
67- * keyFilename: '/path/to/keyfile.json',
68- * projectId: 'my-project'
69- * });
70- *
71- * var bigquery = gcloud.bigquery();
72- *
73- * //-
74- * // In the following examples from this page and the other modules (Dataset,
75- * // Table, etc.), we are going to be using a dataset from
76- * // <a href="http://goo.gl/f2SXcb">data.gov</a> of higher education
77- * // institutions.
78- * //
79- * // We will create a table with the correct schema, import the public CSV
80- * // file into that table, and query it for data.
81- * //-
8262 */
8363function BigQuery ( options ) {
8464 if ( ! ( this instanceof BigQuery ) ) {
0 commit comments