OSDN Git Service

fix spelling mistakes in file pg_hint_plan.html
authorLittleWuCoding <31984989+LittleWuCoding@users.noreply.github.com>
Wed, 12 Dec 2018 06:47:13 +0000 (14:47 +0800)
committerKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Thu, 29 Aug 2019 07:57:23 +0000 (16:57 +0900)
doc/pg_hint_plan.html

index daab3c0..5d41fcd 100755 (executable)
@@ -229,7 +229,7 @@ postgres-# SELECT * FROM table1 t1 WHERE key = 'value';
 <h2 id="install">Installation</h2>
 This section describes the installation steps.
 <h3 id="build">building binary module</h3>
-<p>Simplly run "make" in the top of the source tree, then "make install" as appropriate user. The PATH environment variable should be set properly for the target PostgreSQL for this process. </p>
+<p>Simply run "make" in the top of the source tree, then "make install" as appropriate user. The PATH environment variable should be set properly for the target PostgreSQL for this process. </p>
 <pre>
 $ tar xzvf pg_hint_plan-1.x.x.tar.gz
 $ cd pg_hint_plan-1.x.x
@@ -239,7 +239,7 @@ $ su
 </pre>
 
 <h3 id="hint-load">Loding pg_hint_plan</h3>
-<p>Basically pg_hint_plan does not requires CREATE EXTENSION. Simplly loading it by LOAD command will activate it and of course you can load it globally by setting shared_preload_libraries in postgresql.conf. Or you might be interested in ALTER USER SET/ALTER DATABASE SET for automatic loading for specific sessions. 
+<p>Basically pg_hint_plan does not requires CREATE EXTENSION. Simply loading it by LOAD command will activate it and of course you can load it globally by setting shared_preload_libraries in postgresql.conf. Or you might be interested in ALTER USER SET/ALTER DATABASE SET for automatic loading for specific sessions. 
 <pre>
 postgres=# LOAD 'pg_hint_plan';
 LOAD