Skip to content

Commit 8db1395

Browse files
committed
Fix doc since
1 parent 44f3384 commit 8db1395

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/req/request.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ defmodule Req.Request do
383383
384384
See also the ["Request Steps"](#module-request-steps) section in the module documentation.
385385
"""
386-
@typedoc since: "0.6.0"
386+
@typedoc since: "0.5.1"
387387
@type request_step() ::
388388
(t() -> t() | {t(), Req.Response.t() | Exception.t()}) | {module(), atom(), [term()]}
389389

@@ -397,7 +397,7 @@ defmodule Req.Request do
397397
See also the ["Response and Error Steps"](#module-response-and-error-steps) section in the
398398
module documentation.
399399
"""
400-
@typedoc since: "0.6.0"
400+
@typedoc since: "0.5.1"
401401
@type response_step() ::
402402
({t(), Req.Response.t()} -> {t(), Req.Response.t() | Exception.t()})
403403
| {module(), atom(), [term()]}
@@ -412,7 +412,7 @@ defmodule Req.Request do
412412
See also the ["Response and Error Steps"](#module-response-and-error-steps) section in the
413413
module documentation.
414414
"""
415-
@typedoc since: "0.6.0"
415+
@typedoc since: "0.5.1"
416416
@type error_step() ::
417417
({t(), Exception.t()} -> {t(), Req.Response.t() | Exception.t()})
418418
| {module(), atom(), [term()]}

0 commit comments

Comments
 (0)