Skip to content

Commit 2f58c9d

Browse files
authored
The C # native interface document is missing one letter't ' (#598)
1 parent 450f7ae commit 2f58c9d

12 files changed

Lines changed: 12 additions & 12 deletions

src/UserGuide/Master/Tree/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
9494
// Insert Tablet
9595
var timestamp_lst = new List<long>{ timestamp + 1 };
9696
var value_lst = new List<object> {"iotdb", true, (int) 12};
97-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
97+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
9898
await session_pool.InsertTabletAsync(tablet);
9999

100100
// Close Session

src/UserGuide/V1.2.x/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
9494
// Insert Tablet
9595
var timestamp_lst = new List<long>{ timestamp + 1 };
9696
var value_lst = new List<object> {"iotdb", true, (int) 12};
97-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
97+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
9898
await session_pool.InsertTabletAsync(tablet);
9999

100100
// Close Session

src/UserGuide/V1.3.0-2/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
9494
// Insert Tablet
9595
var timestamp_lst = new List<long>{ timestamp + 1 };
9696
var value_lst = new List<object> {"iotdb", true, (int) 12};
97-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
97+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
9898
await session_pool.InsertTabletAsync(tablet);
9999

100100
// Close Session

src/UserGuide/V1.3.3/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
8989
// Insert Tablet
9090
var timestamp_lst = new List<long>{ timestamp + 1 };
9191
var value_lst = new List<object> {"iotdb", true, (int) 12};
92-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
92+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
9393
await session_pool.InsertTabletAsync(tablet);
9494

9595
// Close Session

src/UserGuide/dev-1.3/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
8989
// Insert Tablet
9090
var timestamp_lst = new List<long>{ timestamp + 1 };
9191
var value_lst = new List<object> {"iotdb", true, (int) 12};
92-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
92+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
9393
await session_pool.InsertTabletAsync(tablet);
9494

9595
// Close Session

src/UserGuide/latest/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
9494
// Insert Tablet
9595
var timestamp_lst = new List<long>{ timestamp + 1 };
9696
var value_lst = new List<object> {"iotdb", true, (int) 12};
97-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
97+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
9898
await session_pool.InsertTabletAsync(tablet);
9999

100100
// Close Session

src/zh/UserGuide/Master/Tree/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
8181
// 插入Tablet
8282
var timestamp_lst = new List<long>{ timestamp + 1 };
8383
var value_lst = new List<object> {"iotdb", true, (int) 12};
84-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
84+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
8585
await session_pool.InsertTabletAsync(tablet);
8686

8787
// 关闭Session

src/zh/UserGuide/V1.2.x/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
8181
// 插入Tablet
8282
var timestamp_lst = new List<long>{ timestamp + 1 };
8383
var value_lst = new List<object> {"iotdb", true, (int) 12};
84-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
84+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
8585
await session_pool.InsertTabletAsync(tablet);
8686

8787
// 关闭Session

src/zh/UserGuide/V1.3.0-2/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
8181
// 插入Tablet
8282
var timestamp_lst = new List<long>{ timestamp + 1 };
8383
var value_lst = new List<object> {"iotdb", true, (int) 12};
84-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
84+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
8585
await session_pool.InsertTabletAsync(tablet);
8686

8787
// 关闭Session

src/zh/UserGuide/V1.3.3/API/Programming-CSharp-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ await session_pool.InsertRecordAsync("root.test_group.test_device", rowRecord);
8181
// 插入Tablet
8282
var timestamp_lst = new List<long>{ timestamp + 1 };
8383
var value_lst = new List<object> {"iotdb", true, (int) 12};
84-
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_ls);
84+
var tablet = new Tablet("root.test_group.test_device", measures, value_lst, timestamp_lst);
8585
await session_pool.InsertTabletAsync(tablet);
8686

8787
// 关闭Session

0 commit comments

Comments
 (0)