Skip to content

Commit

Permalink
more doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PhongChuong committed Nov 1, 2024
1 parent d35393d commit 2b6efea
Showing 1 changed file with 7 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ private DatasetOption(BigQueryRpc.Option option, Object value) {

/**
* Returns an option to specify the dataset's fields to be returned by the RPC call. If this
* option is not provided all dataset's fields are returned. { code DatasetOption.fields} can be
* option is not provided all dataset's fields are returned. {@code DatasetOption.fields} can be
* used to specify only the fields of interest. {@link Dataset#getDatasetId()} is always
* returned, even if not specified.
*/
Expand Down Expand Up @@ -865,8 +865,7 @@ public int hashCode() {
/**
* Lists the project's datasets. This method returns partial information on each dataset: ({@link
* Dataset#getDatasetId()}, {@link Dataset#getFriendlyName()} and {@link
* Dataset#getGeneratedId()}). To get complete information use either {@link #getDataset(String,
* DatasetOption...)} or {@link #getDataset(DatasetId, DatasetOption...)}.
* Dataset#getGeneratedId()}). To get complete information use {@link #getDataset}.
*
* <p>Example of listing datasets, specifying the page size.
*
Expand All @@ -885,8 +884,7 @@ public int hashCode() {
/**
* Lists the datasets in the provided project. This method returns partial information on each
* dataset: ({@link Dataset#getDatasetId()}, {@link Dataset#getFriendlyName()} and {@link
* Dataset#getGeneratedId()}). To get complete information use either {@link #getDataset(String,
* DatasetOption...)} or {@link #getDataset(DatasetId, DatasetOption...)}.
* Dataset#getGeneratedId()}). To get complete information use either {@link #getDataset}.
*
* <p>Example of listing datasets in a project, specifying the page size.
*
Expand Down Expand Up @@ -1206,7 +1204,7 @@ public int hashCode() {
* Lists the tables in the dataset. This method returns partial information on each table: ({@link
* Table#getTableId()}, {@link Table#getFriendlyName()}, {@link Table#getGeneratedId()} and type,
* which is part of {@link Table#getDefinition()}). To get complete information use either {@link
* #getTable(TableId, TableOption...)} or {@link #getTable(String, String, TableOption...)}.
* #getTable}.
*
* <p>Example of listing the tables in a dataset, specifying the page size.
*
Expand All @@ -1226,7 +1224,7 @@ public int hashCode() {
* Lists the tables in the dataset. This method returns partial information on each table: ({@link
* Table#getTableId()}, {@link Table#getFriendlyName()}, {@link Table#getGeneratedId()} and type,
* which is part of {@link Table#getDefinition()}). To get complete information use either {@link
* #getTable(TableId, TableOption...)} or {@link #getTable(String, String, TableOption...)}.
* #getTable}.
*
* <p>Example of listing the tables in a dataset.
*
Expand Down Expand Up @@ -1430,8 +1428,7 @@ TableResult listTableData(

/**
* Sends a job cancel request. This call will return immediately. The job status can then be
* checked using either {@link #getJob(JobId, JobOption...)} or {@link #getJob(String,
* JobOption...)}.
* checked by using {@link #getJob}.
*
* <p>If the location of the job is not "US" or "EU", {@link #cancel(JobId)} must be used instead.
*
Expand All @@ -1455,8 +1452,7 @@ TableResult listTableData(

/**
* Sends a job cancel request. This call will return immediately. The job status can then be
* checked using either {@link #getJob(JobId, JobOption...)} or {@link #getJob(String,
* JobOption...)}).
* checked using {@link #getJob}.
*
* <p>If the location of the job is not "US" or "EU", the {@code jobId} must specify the job
* location.
Expand Down

0 comments on commit 2b6efea

Please sign in to comment.