summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_cli/DESIGN.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_cli/DESIGN.md')
-rw-r--r--deps/rabbitmq_cli/DESIGN.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/rabbitmq_cli/DESIGN.md b/deps/rabbitmq_cli/DESIGN.md
index 4c7dd47e4e..b4725949c5 100644
--- a/deps/rabbitmq_cli/DESIGN.md
+++ b/deps/rabbitmq_cli/DESIGN.md
@@ -47,7 +47,7 @@ CLI core consists of several modules implementing command execution process:
#### Arguments parsing
-Command line arguments are parsed with [OptionParser](http://elixir-lang.org/docs/stable/elixir/OptionParser.html)
+Command line arguments are parsed with [OptionParser](https://elixir-lang.org/docs/stable/elixir/OptionParser.html)
Parser returns a list of unnamed arguments and a map of options (named arguments)
First unnamed argument is a command name.
Named arguments can be global or command specific.
@@ -412,7 +412,7 @@ and returns a list of strings, that should be printed.
format_stream(output_stream :: Enumerable.t, options :: Map.t) :: Enumerable.t
Format a stream of return values. This function uses elixir
-Stream [http://elixir-lang.org/docs/stable/elixir/Stream.html] abstraction
+Stream [https://elixir-lang.org/docs/stable/elixir/Stream.html] abstraction
to define processing of continuous data, so the CLI can output data in realtime.
Used in `list_*` commands, that emit data asynchronously.