From 7416e552a46bcbf264a41feda5dcbf24455d9928 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 9 Jun 2025 20:12:19 -0300 Subject: [PATCH] Fix typo --- src/availability.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/availability.jl b/src/availability.jl index 781df45..c15ff15 100644 --- a/src/availability.jl +++ b/src/availability.jl @@ -59,7 +59,7 @@ function UnavailableError(f, symbol::Symbol, platform::String, avail::PlatformAv elseif !isnothing(avail.introduced) && f() < avail.introduced "was introduced on $platform v$(avail.introduced)" else - "does not seem to be unavailable. Please file an issue at www.github.com/JuliaInterop/ObjectiveC.jl with the source of the offending Objective-C code." + "does not seem to be available. Please file an issue at www.github.com/JuliaInterop/ObjectiveC.jl with the source of the offending Objective-C code." end return UnavailableError(symbol, msg) end