From 88d1a694b5832af0e7569e064633da04ded1f6d1 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 30 Aug 2024 11:14:34 -0700 Subject: [PATCH] Tweak grammar in docs for actor.gleam --- src/gleam/otp/actor.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gleam/otp/actor.gleam b/src/gleam/otp/actor.gleam index 6eb1fb5..65f5c3e 100644 --- a/src/gleam/otp/actor.gleam +++ b/src/gleam/otp/actor.gleam @@ -89,7 +89,7 @@ //// // The last part is to implement the `handle_message` callback function. //// // //// // This function is called by the Actor for each message it receives. -//// // Actor is single threaded only does one thing at a time, so it handles +//// // Actor is single threaded and only does one thing at a time, so it handles //// // messages sequentially and one at a time, in the order they are received. //// // //// // The function takes the message and the current state, and returns a data