Skip to content

Commit 6fae896

Browse files
committed
refactor: rename to ValueInterface
1 parent 0b8bd43 commit 6fae896

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/DynamicExpressions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using DispatchDoctor: @stable, @unstable
44

55
@stable default_mode = "disable" begin
66
include("Utils.jl")
7-
include("TypeInterface.jl")
7+
include("ValueInterface.jl")
88
include("ExtensionInterface.jl")
99
include("OperatorEnum.jl")
1010
include("Node.jl")
@@ -26,7 +26,7 @@ import PackageExtensionCompat: @require_extensions
2626
import Reexport: @reexport
2727
macro ignore(args...) end
2828

29-
import .TypeInterfaceModule:
29+
import .ValueInterfaceModule:
3030
is_valid,
3131
is_valid_array,
3232
get_number_type,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module TypeInterfaceModule
1+
module ValueInterfaceModule
22

33
using Interfaces: Interfaces, @interface, @implements, Arguments
44

0 commit comments

Comments
 (0)