Fix typos (#440)

This commit is contained in:
Viktor Szépe 2026-03-22 20:52:55 +01:00 committed by GitHub
parent 92914abdeb
commit b3c1917a38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 11 additions and 11 deletions

View File

@ -31,7 +31,7 @@ For more information on closing issues using keywords, please check https://docs
## **Changelog**
<!-- 📛📛📛📛
Log of changes introduced in this release in the style fo https://keepachangelog.com/en/1.1.0/
Log of changes introduced in this release in the style of https://keepachangelog.com/en/1.1.0/
📛📛📛📛 -->
### **Added**

View File

@ -467,7 +467,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- `/list` endpoints to not require a request body
- `metamessage_type` to `label` with backwards compatability
- `metamessage_type` to `label` with backwards compatibility
- Database Provisioning to rely on alembic
- Database Session Manager to explicitly rollback transactions before closing
the connection
@ -641,7 +641,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Authentication Middleware now implemented using built-in FastAPI Security
module
- Get by name routes for users and collections now include "name" in slug
- Python SDK moved to separate [respository](https://github.com/plastic-labs/honcho-python)
- Python SDK moved to separate [repository](https://github.com/plastic-labs/honcho-python)
### Fixed
@ -712,7 +712,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- session_data is now metadata
- session_data is a JSON field used python `dict` for compatability
- session_data is a JSON field used python `dict` for compatibility
## [0.0.2] — 2024-02-01

View File

@ -490,7 +490,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
### Changed
- `/list` endpoints to not require a request body
- `metamessage_type` to `label` with backwards compatability
- `metamessage_type` to `label` with backwards compatibility
- Database Provisioning to rely on alembic
- Database Session Manager to explicitly rollback transactions before closing
the connection

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -25,7 +25,7 @@ Use Honcho to build with Honcho! The [plugin](/v3/guides/integrations/claudecode
/plugin install honcho-dev@honcho # Skills to teach claude how to integrate Honcho
```
The markeplace also includes all the agent skills below, so you can use `/honcho-dev:integrate` directly after installing.
The marketplace also includes all the agent skills below, so you can use `/honcho-dev:integrate` directly after installing.
See the [full Claude Code integration guide](/v3/guides/integrations/claudecode) for setup details.

View File

@ -526,7 +526,7 @@ async def fetch_all_meetings(
def parse_participants(participants_str: str) -> ParsedParticipants:
"""Parse Granola's participant string into structured participants.
Warns on unparseable entries instead of silently dropping them.
Warns on unparsable entries instead of silently dropping them.
"""
result = ParsedParticipants()
if not participants_str:

View File

@ -149,7 +149,7 @@ uv run python main.py
<Card title="Get Context" icon="database" href="/v3/documentation/features/get-context">
Retrieve formatted conversation history
</Card>
<Card title="Github code" icon="robot" href="https://github.com/plastic-labs/reachy-mini-honcho">
<Card title="GitHub code" icon="robot" href="https://github.com/plastic-labs/reachy-mini-honcho">
Dig into the code
</Card>
</CardGroup>

View File

@ -338,7 +338,7 @@ async def fetch_all_meetings(
def parse_participants(participants_str: str) -> ParsedParticipants:
"""Parse Granola's participant string into structured participants.
Warns on unparseable entries instead of silently dropping them.
Warns on unparsable entries instead of silently dropping them.
"""
result = ParsedParticipants()
if not participants_str: