Skip to content

Commit a69c1bf

Browse files
authored
Update data-types.mdx (#1257)
1 parent cff5e59 commit a69c1bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/doc-sdk-python/data-types.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ rid = RecordID("person", "john")
379379
```python title="Extracting data"
380380
# Simple
381381
rid = RecordID("person", "john")
382-
rid.tb # "person"
382+
rid.table_name # "person"
383383
rid.id # "john"
384384

385385
# Complex
@@ -414,4 +414,4 @@ str(RecordID('table', { city: "London" }))
414414
# 'table:{ city: "London" }'
415415
str(RecordID('table', ["London"]))
416416
# 'table:["London"]'
417-
```
417+
```

0 commit comments

Comments
 (0)