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 ece4048 commit 557b779Copy full SHA for 557b779
lib/elixir/lib/system.ex
@@ -564,10 +564,10 @@ defmodule System do
564
iex> System.cmd("echo", ["hello"])
565
{"hello\n", 0}
566
567
- iex> System.cmd("echo", ["hello"]), env: [{"MIX_ENV", "test"}]
+ iex> System.cmd("echo", ["hello"], env: [{"MIX_ENV", "test"}])
568
569
570
- iex> System.cmd("echo", ["hello"]), into: IO.stream(:stdio, :line)
+ iex> System.cmd("echo", ["hello"], into: IO.stream(:stdio, :line))
571
hello
572
{%IO.Stream{}, 0}
573
0 commit comments