From 2ffe37c95df2a0cd9b93b9437af0f447dc5f7d55 Mon Sep 17 00:00:00 2001 From: dylanhitt Date: Fri, 20 Dec 2024 17:02:19 -0500 Subject: [PATCH] chore: comment Deprecetd -> OptionDeprecated --- option.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/option.go b/option.go index b3b97cfc..a14cc302 100644 --- a/option.go +++ b/option.go @@ -293,7 +293,7 @@ func OptionOperationID(operationID string) func(*BaseRoute) { } } -// Deprecated marks the route as deprecated. +// OptionDeprecated marks the route as deprecated. func OptionDeprecated() func(*BaseRoute) { return func(r *BaseRoute) { r.Operation.Deprecated = true