Skip to content

Commit ab82659

Browse files
authored
nit: spellcheck changes (#375)
1 parent b6628a7 commit ab82659

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

documentation/docs/user-guide/builtin-tools/quickstart-browser.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ browser_tool = AgentCoreBrowser(region="us-west-2")
117117
agent = Agent(tools=[browser_tool.browser])
118118

119119
# Test the agent with a web search prompt
120-
prompt = "what are the services offered by Bedrock AgentCore? Use the documentaiton link if needed: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/what-is-bedrock-agentcore.html"
120+
prompt = "what are the services offered by Bedrock AgentCore? Use the documentation link if needed: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/what-is-bedrock-agentcore.html"
121121
print(f"\\nPrompt: {prompt}\\n")
122122

123123
response = agent(prompt)
@@ -680,7 +680,7 @@ This code:
680680

681681
* Creates a managed browser session using AgentCore Browser
682682
* Connects to the remote Chrome browser using Playwright's Chrome DevTools Protocol (CDP)
683-
* Navigates to [Agentcore documentation](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/what-is-bedrock-agentcore.html) and prints the page title
683+
* Navigates to [AgentCore documentation](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/what-is-bedrock-agentcore.html) and prints the page title
684684
* Keeps the session alive for 2 minutes, allowing you to view it in the AWS Console
685685
* Properly closes the browser and cleans up resources
686686

documentation/docs/user-guide/create/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Run the CLI in interactive mode:
6565

6666
```bash
6767
agentcore create
68-
````
68+
```
6969

7070
You will be prompted for:
7171

@@ -246,7 +246,7 @@ Or, for `production` template, delete stacks and resources using CDK/Terraform d
246246
* AgentCore Identity in deployed environments
247247
* `.env.local` fallback in local dev (`LOCAL_DEV=1`)
248248

249-
For the `production` template, it is your responsibility to implement API key handling. Using Bedrock Agentcore Identity
249+
For the `production` template, it is your responsibility to implement API key handling. Using Bedrock AgentCore Identity
250250
or AWS Secrets Manager is recommended.
251251

252252
### MCP Tools

documentation/docs/user-guide/dev/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This guide shows how to use the Amazon Bedrock AgentCore development server to r
1111
The development server provides:
1212

1313
- **Hot Reloading** - Automatically detects code changes and restarts the server
14-
- **Local Testing** - Test your agent locally before deploying to Bedrock Agentcore
14+
- **Local Testing** - Test your agent locally before deploying to Bedrock AgentCore
1515
- **Environment Configuration** - Inject environment variables for testing different configurations
1616

1717
The dev server runs your agent using the [Bedrock AgentCore SDK](https://github.com/aws/bedrock-agentcore-sdk-python/blob/main/src/bedrock_agentcore/runtime/app.py) ASGI application, just like it runs in production on AgentCore Runtime.

documentation/docs/user-guide/runtime/a2a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deploy A2A servers in AgentCore Runtime
22

3-
Amazon Bedrock AgentCore AgentCore Runtime lets you deploy and run Agent-to-Agent (A2A)
3+
Amazon Bedrock AgentCore Runtime lets you deploy and run Agent-to-Agent (A2A)
44
servers in the AgentCore Runtime. This guide walks you through creating, testing, and deploying your
55
first A2A server.
66

src/bedrock_agentcore_starter_toolkit/utils/aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ def ensure_valid_aws_creds() -> tuple[bool, Optional[str]]:
4444
return False, f"AWS credential validation failed: {e.response['Error'].get('Message', code)}"
4545

4646
except Exception:
47-
# Don't block the user — a non-credential error occured
47+
# Don't block the user — a non-credential error occurred
4848
return True, None

tests/utils/test_aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ def test_ensure_valid_aws_creds_unknown_exception(self, mock_get_account_id):
100100

101101
is_valid, message = ensure_valid_aws_creds()
102102

103-
# Function spec says: "Don't block the user — a non-credential error occured"
103+
# Function spec says: "Don't block the user — a non-credential error occurred"
104104
assert is_valid is True
105105
assert message is None

0 commit comments

Comments
 (0)