Skip to content

Commit dc2ac14

Browse files
jsorefSandyTao520
andauthored
Various spelling improvements (google-gemini#3497)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Sandy Tao <sandytao520@icloud.com>
1 parent 8be5f80 commit dc2ac14

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+91
-91
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ body:
2929
id: info
3030
attributes:
3131
label: Client information
32-
description: Please paste the full text from the `/about` command run from Gemini CLI. Also include which platform (MacOS, Windows, Linux).
32+
description: Please paste the full text from the `/about` command run from Gemini CLI. Also include which platform (macOS, Windows, Linux).
3333
value: |
3434
<details>
3535

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Dive Deeper
66

7-
<!-- more thoughts and in depth discussion here -->
7+
<!-- more thoughts and in-depth discussion here -->
88

99
## Reviewer Test Plan
1010

.github/scripts/pr-triage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ process_pr() {
2424
ISSUE_NUMBER=$(echo "$PR_BODY" | grep -oE '#[0-9]+' | head -1 | sed 's/#//' 2>/dev/null || echo "")
2525
fi
2626

27-
# Pattern 2: Closes/Fixes/Resolves patterns (case insensitive)
27+
# Pattern 2: Closes/Fixes/Resolves patterns (case-insensitive)
2828
if [ -z "$ISSUE_NUMBER" ]; then
2929
ISSUE_NUMBER=$(echo "$PR_BODY" | grep -iE '(closes?|fixes?|resolves?) #[0-9]+' | grep -oE '#[0-9]+' | head -1 | sed 's/#//' 2>/dev/null || echo "")
3030
fi

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,19 +272,19 @@ To debug the CLI's React-based UI, you can use React DevTools. Ink, the library
272272

273273
## Sandboxing
274274

275-
### MacOS Seatbelt
275+
### macOS Seatbelt
276276

277-
On MacOS, `gemini` uses Seatbelt (`sandbox-exec`) under a `permissive-open` profile (see `packages/cli/src/utils/sandbox-macos-permissive-open.sb`) that restricts writes to the project folder but otherwise allows all other operations and outbound network traffic ("open") by default. You can switch to a `restrictive-closed` profile (see `packages/cli/src/utils/sandbox-macos-restrictive-closed.sb`) that declines all operations and outbound network traffic ("closed") by default by setting `SEATBELT_PROFILE=restrictive-closed` in your environment or `.env` file. Available built-in profiles are `{permissive,restrictive}-{open,closed,proxied}` (see below for proxied networking). You can also switch to a custom profile `SEATBELT_PROFILE=<profile>` if you also create a file `.gemini/sandbox-macos-<profile>.sb` under your project settings directory `.gemini`.
277+
On macOS, `gemini` uses Seatbelt (`sandbox-exec`) under a `permissive-open` profile (see `packages/cli/src/utils/sandbox-macos-permissive-open.sb`) that restricts writes to the project folder but otherwise allows all other operations and outbound network traffic ("open") by default. You can switch to a `restrictive-closed` profile (see `packages/cli/src/utils/sandbox-macos-restrictive-closed.sb`) that declines all operations and outbound network traffic ("closed") by default by setting `SEATBELT_PROFILE=restrictive-closed` in your environment or `.env` file. Available built-in profiles are `{permissive,restrictive}-{open,closed,proxied}` (see below for proxied networking). You can also switch to a custom profile `SEATBELT_PROFILE=<profile>` if you also create a file `.gemini/sandbox-macos-<profile>.sb` under your project settings directory `.gemini`.
278278

279279
### Container-based Sandboxing (All Platforms)
280280

281-
For stronger container-based sandboxing on MacOS or other platforms, you can set `GEMINI_SANDBOX=true|docker|podman|<command>` in your environment or `.env` file. The specified command (or if `true` then either `docker` or `podman`) must be installed on the host machine. Once enabled, `npm run build:all` will build a minimal container ("sandbox") image and `npm start` will launch inside a fresh instance of that container. The first build can take 20-30s (mostly due to downloading of the base image) but after that both build and start overhead should be minimal. Default builds (`npm run build`) will not rebuild the sandbox.
281+
For stronger container-based sandboxing on macOS or other platforms, you can set `GEMINI_SANDBOX=true|docker|podman|<command>` in your environment or `.env` file. The specified command (or if `true` then either `docker` or `podman`) must be installed on the host machine. Once enabled, `npm run build:all` will build a minimal container ("sandbox") image and `npm start` will launch inside a fresh instance of that container. The first build can take 20-30s (mostly due to downloading of the base image) but after that both build and start overhead should be minimal. Default builds (`npm run build`) will not rebuild the sandbox.
282282

283283
Container-based sandboxing mounts the project directory (and system temp directory) with read-write access and is started/stopped/removed automatically as you start/stop Gemini CLI. Files created within the sandbox should be automatically mapped to your user/group on host machine. You can easily specify additional mounts, ports, or environment variables by setting `SANDBOX_{MOUNTS,PORTS,ENV}` as needed. You can also fully customize the sandbox for your projects by creating the files `.gemini/sandbox.Dockerfile` and/or `.gemini/sandbox.bashrc` under your project settings directory (`.gemini`) and running `gemini` with `BUILD_SANDBOX=1` to trigger building of your custom sandbox.
284284

285285
#### Proxied Networking
286286

287-
All sandboxing methods, including MacOS Seatbelt using `*-proxied` profiles, support restricting outbound network traffic through a custom proxy server that can be specified as `GEMINI_SANDBOX_PROXY_COMMAND=<command>`, where `<command>` must start a proxy server that listens on `:::8877` for relevant requests. See `docs/examples/proxy-script.md` for a minimal proxy that only allows `HTTPS` connections to `example.com:443` (e.g. `curl https://example.com`) and declines all other requests. The proxy is started and stopped automatically alongside the sandbox.
287+
All sandboxing methods, including macOS Seatbelt using `*-proxied` profiles, support restricting outbound network traffic through a custom proxy server that can be specified as `GEMINI_SANDBOX_PROXY_COMMAND=<command>`, where `<command>` must start a proxy server that listens on `:::8877` for relevant requests. See `docs/examples/proxy-script.md` for a minimal proxy that only allows `HTTPS` connections to `example.com:443` (e.g. `curl https://example.com`) and declines all other requests. The proxy is started and stopped automatically alongside the sandbox.
288288

289289
## Manual Publish
290290

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ With the Gemini CLI you can:
1515
- Use tools and MCP servers to connect new capabilities, including [media generation with Imagen,
1616
Veo or Lyria](https://github.com/GoogleCloudPlatform/vertex-ai-creative-studio/tree/main/experiments/mcp-genmedia)
1717
- Ground your queries with the [Google Search](https://ai.google.dev/gemini-api/docs/grounding)
18-
tool, built in to Gemini.
18+
tool, built into Gemini.
1919

2020
## Quickstart
2121

docs/cli/authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Gemini CLI requires you to authenticate with Google's AI services. On initia
1212
1. You have been assigned a license to a current Gemini Code Assist standard or enterprise subscription.
1313
1. You are using the product outside the [supported regions](https://developers.google.com/gemini-code-assist/resources/available-locations) for free individual usage.
1414
1. You are a Google account holder under the age of 18
15-
- If you fall into one of these categories, you must first configure a Google Cloud Project Id to use, [enable the Gemini for Cloud API](https://cloud.google.com/gemini/docs/discover/set-up-gemini#enable-api) and [configure access permissions](https://cloud.google.com/gemini/docs/discover/set-up-gemini#grant-iam).
15+
- If you fall into one of these categories, you must first configure a Google Cloud Project ID to use, [enable the Gemini for Cloud API](https://cloud.google.com/gemini/docs/discover/set-up-gemini#enable-api) and [configure access permissions](https://cloud.google.com/gemini/docs/discover/set-up-gemini#grant-iam).
1616

1717
You can temporarily set the environment variable in your current shell session using the following command:
1818

docs/core/tools-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Gemini CLI core (`packages/core`) features a robust system for defining, reg
88
- `name`: A unique internal name (used in API calls to Gemini).
99
- `displayName`: A user-friendly name.
1010
- `description`: A clear explanation of what the tool does, which is provided to the Gemini model.
11-
- `parameterSchema`: A JSON schema defining the parameters the tool accepts. This is crucial for the Gemini model to understand how to call the tool correctly.
11+
- `parameterSchema`: A JSON schema defining the parameters that the tool accepts. This is crucial for the Gemini model to understand how to call the tool correctly.
1212
- `validateToolParams()`: A method to validate incoming parameters.
1313
- `getDescription()`: A method to provide a human-readable description of what the tool will do with specific parameters before execution.
1414
- `shouldConfirmExecute()`: A method to determine if user confirmation is required before execution (e.g., for potentially destructive operations).

docs/tools/file-system.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The Gemini CLI provides a comprehensive suite of tools for interacting with the
9090
- `path` (string, optional): The absolute path to the directory to search within. Defaults to the current working directory.
9191
- `include` (string, optional): A glob pattern to filter which files are searched (e.g., `"*.js"`, `"src/**/*.{ts,tsx}"`). If omitted, searches most files (respecting common ignores).
9292
- **Behavior:**
93-
- Uses `git grep` if available in a Git repository for speed, otherwise falls back to system `grep` or a JavaScript-based search.
93+
- Uses `git grep` if available in a Git repository for speed; otherwise, falls back to system `grep` or a JavaScript-based search.
9494
- Returns a list of matching lines, each prefixed with its file path (relative to the search directory) and line number.
9595
- **Output (`llmContent`):** A formatted string of matches, e.g.:
9696
```

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This guide provides solutions to common issues and debugging tips.
2727
## Common error messages and solutions
2828

2929
- **Error: `EADDRINUSE` (Address already in use) when starting an MCP server.**
30-
- **Cause:** Another process is already using the port the MCP server is trying to bind to.
30+
- **Cause:** Another process is already using the port that the MCP server is trying to bind to.
3131
- **Solution:**
3232
Either stop the other process that is using the port or configure the MCP server to use a different port.
3333

packages/cli/src/nonInteractiveCli.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,14 @@ describe('runNonInteractive', () => {
229229
it('should not exit if a tool is not found, and should send error back to model', async () => {
230230
const functionCall: FunctionCall = {
231231
id: 'fcNotFound',
232-
name: 'nonExistentTool',
232+
name: 'nonexistentTool',
233233
args: {},
234234
};
235235
const errorResponsePart: Part = {
236236
functionResponse: {
237-
name: 'nonExistentTool',
237+
name: 'nonexistentTool',
238238
id: 'fcNotFound',
239-
response: { error: 'Tool "nonExistentTool" not found in registry.' },
239+
response: { error: 'Tool "nonexistentTool" not found in registry.' },
240240
},
241241
};
242242

@@ -246,8 +246,8 @@ describe('runNonInteractive', () => {
246246
vi.mocked(mockCoreExecuteToolCall).mockResolvedValue({
247247
callId: 'fcNotFound',
248248
responseParts: [errorResponsePart],
249-
resultDisplay: 'Tool "nonExistentTool" not found in registry.',
250-
error: new Error('Tool "nonExistentTool" not found in registry.'),
249+
resultDisplay: 'Tool "nonexistentTool" not found in registry.',
250+
error: new Error('Tool "nonexistentTool" not found in registry.'),
251251
});
252252

253253
const stream1 = (async function* () {
@@ -278,7 +278,7 @@ describe('runNonInteractive', () => {
278278
);
279279

280280
expect(consoleErrorSpy).toHaveBeenCalledWith(
281-
'Error executing tool nonExistentTool: Tool "nonExistentTool" not found in registry.',
281+
'Error executing tool nonexistentTool: Tool "nonexistentTool" not found in registry.',
282282
);
283283

284284
expect(mockProcessExit).not.toHaveBeenCalled();

0 commit comments

Comments
 (0)