Skip to content

Commit fadf03b

Browse files
committed
Fix order of args in TestDriver.
1 parent b27c978 commit fadf03b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/scenic/driver.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ defmodule Scenic.Driver do
348348
This callback is optional.
349349
"""
350350
@callback take_screenshot(driver :: Driver.t()) ::
351-
{:ok, :not_supported} | {:ok, screenshot_t, Driver.t()}
351+
{:ok, :not_supported, Driver.t()} | {:ok, screenshot_t, Driver.t()}
352352

353353
@optional_callbacks reset_scene: 1,
354354
request_input: 2,

0 commit comments

Comments
 (0)