From e648fc71a6d50183c72f9d0a50fdbdadc1ecfa20 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Wed, 21 Aug 2024 18:00:29 -0400 Subject: [PATCH] Update lib.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4ff0d97..fbe94e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! A runtime extension for adding support for Structured Concurrency to existing runtimes. //! -//! # What is Strucutured Concurrency? +//! # What is Structured Concurrency? //! [Structured Concurrency] is a programming paradigm that lets asynchronous operations run only //! within certain scopes so that they form an operation stack like a regular function call stack. //! As the parent operation waits until all children complete, Structured Concurrency helps local