From 92e408dc30ad6045077775eb93202385b7aa90c8 Mon Sep 17 00:00:00 2001 From: Abner Andino Date: Thu, 14 Nov 2024 19:10:18 +0000 Subject: [PATCH] fix documentation typo --- 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 65f5c3e..d18fabe 100644 --- a/src/gleam/otp/actor.gleam +++ b/src/gleam/otp/actor.gleam @@ -1,7 +1,7 @@ //// This module provides the _Actor_ abstraction, one of the most common //// building blocks of Gleam OTP programs. //// -//// An Actor is a process like any other BEAM process and can be be used to hold +//// An Actor is a process like any other BEAM process and can be used to hold //// state, execute code, and communicate with other processes by sending and //// receiving messages. The advantage of using the actor abstraction over a bare //// process is that it provides a single interface for commonly needed