From 62757778389fac9689c1fca06bac10c462335e6e Mon Sep 17 00:00:00 2001 From: Leon Qadirie <39130739+leonqadirie@users.noreply.github.com> Date: Thu, 26 Sep 2024 20:22:47 +0200 Subject: [PATCH] Fix `static_supervisor` documentation again --- src/gleam/otp/static_supervisor.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gleam/otp/static_supervisor.gleam b/src/gleam/otp/static_supervisor.gleam index 664a8d7..bb9b138 100644 --- a/src/gleam/otp/static_supervisor.gleam +++ b/src/gleam/otp/static_supervisor.gleam @@ -259,7 +259,7 @@ pub fn timeout(child: ChildBuilder, ms ms: Int) -> ChildBuilder { /// When the child is to be restarted. See the `Restart` documentation for /// more. /// -/// The default value for restart is `Permenent`. +/// The default value for restart is `Permanent`. pub fn restart(child: ChildBuilder, restart: Restart) -> ChildBuilder { ChildBuilder(..child, restart: restart) }