From 1b205a99cb098af512becdfbecbbbe19eb08806d Mon Sep 17 00:00:00 2001 From: Youssef Ahmed Mohamed Abdelrahman <109446360+unauthorised-401@users.noreply.github.com> Date: Tue, 1 Jul 2025 15:09:14 +0300 Subject: [PATCH] docs: fix typo in application_structure (#5289) --- docs/docs/concepts/application_structure.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/concepts/application_structure.md b/docs/docs/concepts/application_structure.md index a23b463ac..4b1f79228 100644 --- a/docs/docs/concepts/application_structure.md +++ b/docs/docs/concepts/application_structure.md @@ -48,7 +48,7 @@ Below are examples of directory structures for Python and JavaScript application │ ├── utils # utilities for your graph │ │ ├── __init__.py │ │ ├── tools.py # tools for your graph - │ │ ├── nodes.py # node functions for you graph + │ │ ├── nodes.py # node functions for your graph │ │ └── state.py # state definition of your graph │ ├── __init__.py │ └── agent.py # code for constructing your graph @@ -64,7 +64,7 @@ Below are examples of directory structures for Python and JavaScript application ├── src # all project code lies within here │ ├── utils # optional utilities for your graph │ │ ├── tools.ts # tools for your graph - │ │ ├── nodes.ts # node functions for you graph + │ │ ├── nodes.ts # node functions for your graph │ │ └── state.ts # state definition of your graph │ └── agent.ts # code for constructing your graph ├── package.json # package dependencies