diff --git a/mkdocs/docs/api.md b/mkdocs/docs/api.md index b23f7b976e..cc4290f2d9 100644 --- a/mkdocs/docs/api.md +++ b/mkdocs/docs/api.md @@ -1170,7 +1170,7 @@ You can also initiate a transaction if you want to make more changes than just e ```python with table.transaction() as transaction: with transaction.update_schema() as update_schema: - update.add_column("some_other_field", IntegerType(), "doc") + update_schema.add_column("some_other_field", IntegerType(), "doc") # ... Update properties etc ```