From 2509ee37b80b7633a8f6dc8e5c72f34ae60f08dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2EG=C3=B6kay=20Borulday?= Date: Wed, 22 May 2019 17:57:57 +0300 Subject: [PATCH] Add missing parenthesis --- Documentation/Index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ```