From f8a636d3f0573ac464b428891d0c49577d07b5c9 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 7 Feb 2021 06:46:47 -0500 Subject: [PATCH] Fix two small typos (#34) --- add_general_registry.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/add_general_registry.jl b/add_general_registry.jl index 4da8bf1..036a9b2 100644 --- a/add_general_registry.jl +++ b/add_general_registry.jl @@ -37,9 +37,9 @@ function main(; n = 10, max_delay = 120) delays = ExponentialBackOff(; n = n, max_delay = max_delay) try retry(add_general_registry; delays = delays)() - @info("Successfully add the General registry") + @info("Successfully added the General registry") catch ex - msg = "I was unable to added the General registry. However, the build will continue." + msg = "I was unable to add the General registry. However, the build will continue." @error(msg, exception=(ex,catch_backtrace())) end