Skip to content

Commit 8b53562

Browse files
committed
avoid using qex as variable name in docs
1 parent ca7b8a4 commit 8b53562

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/qex.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,10 @@ defmodule Qex do
149149
Split a queue into two, the front n items are put in the first queue
150150
151151
iex> q = Qex.new 1..5
152-
iex> {qex1, qex2} = Qex.split(q, 3)
153-
iex> Enum.to_list qex1
152+
iex> {q1, q2} = Qex.split(q, 3)
153+
iex> Enum.to_list q1
154154
[1, 2, 3]
155-
iex> Enum.to_list qex2
155+
iex> Enum.to_list q2
156156
[4, 5]
157157
"""
158158
@spec split(t, pos_integer) :: {t, t}

0 commit comments

Comments
 (0)