Skip to content

Commit 9536c44

Browse files
committed
style: revert example app defp parens to match upstream style
1 parent ef2ff34 commit 9536c44

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/cli_example/lib/example_cli_app.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ defmodule ExampleCliApp do
3535
System.halt(0)
3636
end
3737

38-
defp test_release_cookie do
38+
defp test_release_cookie() do
3939
{:ok, [[cookie_value]]} = :init.get_argument(:setcookie)
4040
IO.puts("My Release Cookie is: #{inspect(cookie_value)}")
4141
end
4242

43-
defp test_crypto do
43+
defp test_crypto() do
4444
{_pub, _priv} = :crypto.generate_key(:eddsa, :ed25519)
4545
end
4646

47-
defp test_sqlite do
47+
defp test_sqlite() do
4848
{:ok, conn} = Exqlite.Sqlite3.open(":memory:")
4949
:ok = Exqlite.Sqlite3.execute(conn, "create table test (id integer primary key, stuff text)")
5050
{:ok, statement} = Exqlite.Sqlite3.prepare(conn, "insert into test (stuff) values (?1)")

0 commit comments

Comments
 (0)