Skip to content

Commit fef7ac9

Browse files
docs: fix grammar and typos in documentation (#72)
1 parent 20563e2 commit fef7ac9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

POSTGRESQL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This section covers connecting to a PostgreSQL database instance.
2525
2. **Handle Missing Variables**: If a command fails with an error message containing a placeholder like `${POSTGRES_HOST}`, it signifies a missing environment variable. Inform the user which variable is missing and instruct them to set it.
2626

2727
3. **Handle Permission Errors**: If an operation fails due to permission, it is
28-
likely that the user do not have the correct privileges on the PostgreSQL
28+
likely that the user does not have the correct privileges on the PostgreSQL
2929
database. Database-level permissions (e.g., `SELECT`, `INSERT`) are required
3030
to execute queries.
3131

@@ -53,7 +53,7 @@ Users may have set project environment variables:
5353
* `POSTGRES_USER`: The username for authentication.
5454
* `POSTGRES_PASSWORD`: The password for authentication.
5555

56-
Instead of prompting the user for these values for specific tool calls, prompt the user to verify reuse a specific value.
56+
Instead of prompting the user for these values for specific tool calls, prompt the user to verify and reuse a specific value.
5757
Make sure to not use the environment variable name like `POSTGRES_HOST`, `${POSTGRES_HOST}`, or `$POSTGRES_HOST`. The value can be found by using command: `echo $POSTGRES_HOST`.
5858

5959
## Use Full Table Name Format "DATABASE_NAME.SCHEMA_NAME.TABLE_NAME"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Before you begin, ensure you have the following:
2727
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed with version **+v0.6.0**.
2828
* Setup Gemini CLI [Authentication](https://github.com/google-gemini/gemini-cli/tree/main?tab=readme-ov-file#-authentication-options).
2929
* A running PostgreSQL instance.
30-
* User are granted database-level permissions to execute queries.
30+
* Users are granted database-level permissions to execute queries.
3131

3232
## Getting Started
3333

@@ -78,8 +78,8 @@ Interact with Postgres using natural language right from your IDE:
7878

7979
## Supported Tools
8080

81-
* `list_tables`: Use this tool to lists tables in the database.
82-
* `execute_sql`: Use this tool to executes a SQL query.
81+
* `list_tables`: Use this tool to list tables in the database.
82+
* `execute_sql`: Use this tool to execute a SQL query.
8383
* `list_active_queries`: Use this tool to list currently running queries.
8484
* `list_available_extensions`: Use this tool to list available extensions for installation.
8585
* `list_installed_extensions`: Use this tool to list installed extensions.

0 commit comments

Comments
 (0)