Refer to the Table API as Table in comments

The comments added by this branch alternated between Table and Tables when naming the API alongside SQL and Gremlin. TablesDB is left alone since that is the literal database name, as is the plural noun where it refers to actual tables.
This commit is contained in:
Asier Isayas
2026-08-19 16:05:28 -07:00
parent 3005ebd02d
commit 0f0e58740d
7 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ import {
subscriptionId,
} from "../fx";
// Tables API accounts store tables in a fixed "TablesDB" database, with each table as a container.
// Table API accounts store tables in a fixed "TablesDB" database, with each table as a container.
const databaseId = "TablesDB";
const tableId = generateUniqueName("table");
const partitionKey = "testpartition";
@@ -56,7 +56,7 @@ test.describe("Tables account using connection string login", () => {
accountName,
);
// Tables sign data-plane requests client-side with the account key, so no encrypted token is issued.
// Table accounts sign data-plane requests client-side with the account key, so no encrypted token is issued.
const connectionString = connectionStrings.find((cs) => cs.type === "Table")?.connectionString;
await page.goto("https://localhost:1234/hostedExplorer.html");