From c36d0812af7a38f819508592b9f7e6257b1635ba Mon Sep 17 00:00:00 2001 From: Mathias Polligkeit Date: Mon, 17 Jul 2023 13:50:21 +0900 Subject: [PATCH] fix type spec --- lib/flop/adapter.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flop/adapter.ex b/lib/flop/adapter.ex index cc2e2e5..1b45af6 100644 --- a/lib/flop/adapter.ex +++ b/lib/flop/adapter.ex @@ -67,5 +67,5 @@ defmodule Flop.Adapter do This callback will be removed as soon as a better solution is found or made possible. """ - @callback custom_func_builder(opts) :: Macro.t() when opts: keyword + @callback custom_func_builder(opts) :: any when opts: keyword end