From e42a51d720fdad2d3ac1bef58b953e6e82fb6013 Mon Sep 17 00:00:00 2001 From: Javier Valencia Date: Mon, 9 Mar 2020 13:32:29 +0100 Subject: [PATCH] Remove commas on Enums Remove commas on Enums to complains Crystal #7618 PR (https://github.com/crystal-lang/crystal/pull/7618) --- src/lib_ssh2.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_ssh2.cr b/src/lib_ssh2.cr index 5f0c0f4..2433a62 100644 --- a/src/lib_ssh2.cr +++ b/src/lib_ssh2.cr @@ -10,7 +10,7 @@ lib LibSSH2 @[Flags] enum BlockDirections - Inbound, + Inbound Outbound end