In table#insertHander(err, insertErrors) document, `insertErrors[]` has `errors` property. https://github.com/GoogleCloudPlatform/gcloud-node/blob/master/lib/bigquery/table.js#L727-L728 But actually it has `error` not `errors`. https://github.com/GoogleCloudPlatform/gcloud-node/blob/master/lib/bigquery/table.js#L755 Which is correct spec? document or implementation?
In table#insertHander(err, insertErrors) document,
insertErrors[]haserrorsproperty.https://github.com/GoogleCloudPlatform/gcloud-node/blob/master/lib/bigquery/table.js#L727-L728
But actually it has
errornoterrors.https://github.com/GoogleCloudPlatform/gcloud-node/blob/master/lib/bigquery/table.js#L755
Which is correct spec? document or implementation?