Skip to content

Commit

Permalink
Fix order of args in TestDriver.
Browse files Browse the repository at this point in the history
  • Loading branch information
crertel committed Apr 26, 2022
1 parent b27c978 commit fadf03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/scenic/driver.ex
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ defmodule Scenic.Driver do
This callback is optional.
"""
@callback take_screenshot(driver :: Driver.t()) ::
{:ok, :not_supported} | {:ok, screenshot_t, Driver.t()}
{:ok, :not_supported, Driver.t()} | {:ok, screenshot_t, Driver.t()}

@optional_callbacks reset_scene: 1,
request_input: 2,
Expand Down

0 comments on commit fadf03b

Please sign in to comment.