From 05afa5e6d2646093b5d25dba910135c687b1e9ed Mon Sep 17 00:00:00 2001 From: Irfaan Mansoori Date: Wed, 6 May 2026 07:59:25 +0530 Subject: [PATCH] docs: fix missing colon and full stop in README.md I've fixed two minor formatting issues in the README.md to improve clarity: Line 60: Added a missing full stop at the end of the sentence. Line 484: Fixed syntax for the and_ connector by adding a missing colon and space. These are low-risk fixes aimed at maintaining documentation quality. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 817f5155fe..244c4d4c87 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ > It empowers developers with both high-level simplicity and precise low-level control, ideal for creating autonomous AI agents tailored to any scenario. - **CrewAI Crews**: Optimize for autonomy and collaborative intelligence. -- **CrewAI Flows**: The **enterprise and production architecture** for building and deploying multi-agent systems. Enable granular, event-driven control, single LLM calls for precise task orchestration and supports Crews natively +- **CrewAI Flows**: The **enterprise and production architecture** for building and deploying multi-agent systems. Enable granular, event-driven control, single LLM calls for precise task orchestration and supports Crews natively. With over 100,000 developers certified through our community courses at [learn.crewai.com](https://learn.crewai.com), CrewAI is rapidly becoming the standard for enterprise-ready AI automation. @@ -481,7 +481,7 @@ CrewAI's power truly shines when combining Crews with Flows to create sophistica CrewAI flows support logical operators like `or_` and `and_` to combine multiple conditions. This can be used with `@start`, `@listen`, or `@router` decorators to create complex triggering conditions. - `or_`: Triggers when any of the specified conditions are met. -- `and_`Triggers when all of the specified conditions are met. +- `and_`: Triggers when all of the specified conditions are met. Here's how you can orchestrate multiple Crews within a Flow: