From e541ae4c5de2c88aeb05d477ebf7830b7bc8b1c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Fri, 24 Jul 2020 14:37:38 +0200 Subject: [PATCH] [ci skip] Add missing parenthese in docstring --- src/attributes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attributes.jl b/src/attributes.jl index 678f2da05d..b8d650ab1d 100644 --- a/src/attributes.jl +++ b/src/attributes.jl @@ -665,7 +665,7 @@ MOI.set(optimizer, MOI.LazyConstraintCallback(), callback_data -> begin set = # computes set MOI.submit(optimizer, MOI.LazyConstraint(callback_data), func, set) end -end +end) ``` """ struct LazyConstraintCallback <: AbstractCallback end