From 5dcb9e4e1f1582c86e9b521b46f5821f22039887 Mon Sep 17 00:00:00 2001 From: Jakob Lichterfeld Date: Mon, 21 Oct 2024 15:47:24 +0200 Subject: [PATCH] fix: remove unneeded apostrophe --- website/docs/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/development.md b/website/docs/development.md index 704b7d2ba6..981241abf9 100644 --- a/website/docs/development.md +++ b/website/docs/development.md @@ -182,7 +182,7 @@ To quickly identify performance bottlenecks we encourage all contributors to ena - Create Extension to enable `pg_stat_statements` view ```sql - CREATE EXTENSION IF NOT EXISTS `pg_stat_statements`; + CREATE EXTENSION IF NOT EXISTS pg_stat_statements; ``` - Identify potentially slow queries (mean_exec_time)