Skip to content

Commit 99e4212

Browse files
committed
mix format
1 parent b2d986a commit 99e4212

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/protobuf/protoc/cli.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ defmodule Protobuf.Protoc.CLI do
33

44
def main(["--version"]) do
55
{:ok, version} = :application.get_key(:protobuf, :vsn)
6-
IO.puts to_string(version)
6+
IO.puts(to_string(version))
77
end
88

99
def main([opt]) when opt in ["--help", "-h"] do
10-
IO.puts """
10+
IO.puts("""
1111
protoc plugin for generating Elixir code
1212
1313
See `protoc -h` and protobuf-elixir for details.
@@ -20,7 +20,7 @@ defmodule Protobuf.Protoc.CLI do
2020
2121
Options:
2222
--version Print version of protobuf-elixir
23-
"""
23+
""")
2424
end
2525

2626
def main(_) do

0 commit comments

Comments
 (0)