From 6d5ae0d4c74208847bb9e0a0d78cfcee036b0635 Mon Sep 17 00:00:00 2001 From: Christian Noll <79787085+christiannoll@users.noreply.github.com> Date: Sun, 4 Aug 2024 15:05:31 +0200 Subject: [PATCH] Fixed a typo in AsyncSerialQueue.swift --- Sources/Queue/AsyncSerialQueue.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Queue/AsyncSerialQueue.swift b/Sources/Queue/AsyncSerialQueue.swift index 2b6b8e4..4523ee5 100644 --- a/Sources/Queue/AsyncSerialQueue.swift +++ b/Sources/Queue/AsyncSerialQueue.swift @@ -1,4 +1,4 @@ -/// A esrial queue implemented on top of AsyncSequence. +/// A serial queue implemented on top of AsyncSequence. /// /// This type is an experiment. I believe it works, but it currently has no tests and has been used very little. actor AsyncSerialQueue {