diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-02-24 16:14:00 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-02-24 16:14:00 +0900 |
commit | 3b2af88788e1e136bcde78b74ff7387b0c58488a (patch) | |
tree | 9b18e2df07d470d22312b760f9787b69092942a6 /doc/src/sgml/ref/drop_index.sgml | |
parent | 2796ae2ad25330e80e97e823aa72091a9374d87d (diff) |
Fix some typos, grammar and style in docs and comments
The portions fixing the documentation are backpatched where needed.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20210210235557.GQ20012@telsasoft.com
backpatch-through: 9.6
Diffstat (limited to 'doc/src/sgml/ref/drop_index.sgml')
-rw-r--r-- | doc/src/sgml/ref/drop_index.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/drop_index.sgml b/doc/src/sgml/ref/drop_index.sgml index 85cf23bca20..b6d2c2014f2 100644 --- a/doc/src/sgml/ref/drop_index.sgml +++ b/doc/src/sgml/ref/drop_index.sgml @@ -45,7 +45,7 @@ DROP INDEX [ CONCURRENTLY ] [ IF EXISTS ] <replaceable class="parameter">name</r <para> Drop the index without locking out concurrent selects, inserts, updates, and deletes on the index's table. A normal <command>DROP INDEX</command> - acquires exclusive lock on the table, blocking other accesses until the + acquires an exclusive lock on the table, blocking other accesses until the index drop can be completed. With this option, the command instead waits until conflicting transactions have completed. </para> |