Skip to content

Commit 829610f

Browse files
authored
Merge pull request #466 from uhaciogullari/master
Fixed documentation for the removed method
2 parents 154b4cf + 947fb7b commit 829610f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ This fixes zsh (and maybe other shells) escript-related bugs. Also this should s
102102

103103
```erlang-repl
104104
105-
1>> hackney:start().
105+
1>> application:ensure_all_started(hackney).
106106
ok
107107
```
108108

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ This fixes zsh (and maybe other shells) escript-related bugs. Also this should s
102102

103103
```erlang-repl
104104
105-
1>> hackney:start().
105+
1>> application:ensure_all_started(hackney).
106106
ok
107107
```
108108

doc/overview.edoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ It is suggested that you install rebar3 user-wide as described [here](http://blo
119119
This fixes zsh (and maybe other shells) escript-related bugs. Also this should speed things up.
120120

121121
<pre lang="erlang-repl">
122-
1>> hackney:start().
122+
1>> application:ensure_all_started(hackney).
123123
ok</pre>
124124

125125
It will start hackney and all of the application it depends on:

0 commit comments

Comments
 (0)