We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2d986a commit 99e4212Copy full SHA for 99e4212
lib/protobuf/protoc/cli.ex
@@ -3,11 +3,11 @@ defmodule Protobuf.Protoc.CLI do
3
4
def main(["--version"]) do
5
{:ok, version} = :application.get_key(:protobuf, :vsn)
6
- IO.puts to_string(version)
+ IO.puts(to_string(version))
7
end
8
9
def main([opt]) when opt in ["--help", "-h"] do
10
- IO.puts """
+ IO.puts("""
11
protoc plugin for generating Elixir code
12
13
See `protoc -h` and protobuf-elixir for details.
@@ -20,7 +20,7 @@ defmodule Protobuf.Protoc.CLI do
20
21
Options:
22
--version Print version of protobuf-elixir
23
- """
+ """)
24
25
26
def main(_) do
0 commit comments