Skip to content

Commit d9bd5d6

Browse files
Supress output in doctest in String module (elixir-lang#11776)
1 parent 0e76dd6 commit d9bd5d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/elixir/lib/string.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ defmodule String do
213213
Alternatively, you can view a string's binary representation by
214214
passing an option to `IO.inspect/2`:
215215
216-
iex> IO.inspect("héllo", binaries: :as_binaries)
217-
<<104, 195, 169, 108, 108, 111>>
216+
IO.inspect("héllo", binaries: :as_binaries)
217+
#=> <<104, 195, 169, 108, 108, 111>>
218218
219219
## Self-synchronization
220220

0 commit comments

Comments
 (0)