From a9d4e0da29e7bfa8712871ddadc5620fdc488f6f Mon Sep 17 00:00:00 2001 From: Dionysis Glytsos <146995908+dionysis11@users.noreply.github.com> Date: Sun, 8 Jun 2025 16:46:41 +0300 Subject: [PATCH] docs: fix typos (#4992) Fix typos --- docs/docs/concepts/auth.md | 2 +- docs/docs/reference/index.md | 2 +- docs/docs/tutorials/usaco/usaco.ipynb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/concepts/auth.md b/docs/docs/concepts/auth.md index 43407cbfb..7788ce37f 100644 --- a/docs/docs/concepts/auth.md +++ b/docs/docs/concepts/auth.md @@ -198,7 +198,7 @@ async def add_owner( You can register handlers for specific resources and actions by chaining the resource and action names together with the [`@auth.on`](../cloud/reference/sdk/python_sdk_ref.md#langgraph_sdk.auth.Auth.on) decorator. When a request is made, the most specific handler that matches that resource and action is called. Below is an example of how to register handlers for specific resources and actions. For the following setup: -1. Authenticated users are able to create threads, read thread, create runs on threads +1. Authenticated users are able to create threads, read threads, and create runs on threads 2. Only users with the "assistants:create" permission are allowed to create new assistants 3. All other endpoints (e.g., e.g., delete assistant, crons, store) are disabled for all users. diff --git a/docs/docs/reference/index.md b/docs/docs/reference/index.md index 71d201902..7051a743d 100644 --- a/docs/docs/reference/index.md +++ b/docs/docs/reference/index.md @@ -22,7 +22,7 @@ Welcome to the LangGraph reference docs! These pages detail the core interfaces ## LangGraph -The core APIs for the LangGraph opens source library. +The core APIs for the LangGraph open source library. - [Graphs](graphs.md): Main graph abstraction and usage. - [Functional API](func.md): Functional programming interface for graphs. diff --git a/docs/docs/tutorials/usaco/usaco.ipynb b/docs/docs/tutorials/usaco/usaco.ipynb index 41586fdb1..407f564ee 100644 --- a/docs/docs/tutorials/usaco/usaco.ipynb +++ b/docs/docs/tutorials/usaco/usaco.ipynb @@ -1758,7 +1758,7 @@ "id": "4eb67198-c84f-458b-8baf-783d7246dddc", "metadata": {}, "source": [ - "Let's let the agent try again. Call `stream` with `None` to just use the inputs loaded from the memory. We will skip our human review for the next few attempats\n", + "Let's let the agent try again. Call `stream` with `None` to just use the inputs loaded from the memory. We will skip our human review for the next few attempts\n", "to see if it can correct itself." ] },