diff --git a/Documentation/Index.md b/Documentation/Index.md index 05967ff4..70d67c2d 100644 --- a/Documentation/Index.md +++ b/Documentation/Index.md @@ -1209,7 +1209,7 @@ We can build an `ALTER TABLE … RENAME TO` statement by calling the `rename` function on a `Table` or `VirtualTable`. ```swift -try db.run(users.rename(Table("users_old")) +try db.run(users.rename(Table("users_old"))) // ALTER TABLE "users" RENAME TO "users_old" ```