Skip to content

Commit 623d0c5

Browse files
committed
V0.1.3
1 parent 1d1eb71 commit 623d0c5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TypeTransform"
22
uuid = "0fb2cfb0-ef68-4639-af2f-cb92dac991ae"
33
authors = ["Amin Yahyaabadi"]
4-
version = "0.1.2"
4+
version = "0.1.3"
55

66
[deps]
77
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"

src/fexpr.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function unwrap_fun(expr::Expr)
1313
elseif expr.head == :block
1414
fexpr = expr.args[2] # separate fexpr from block
1515
else
16-
error("expression not supported")
16+
error("Expression is not supported")
1717
end
1818

1919
head = fexpr.args[1]
@@ -27,7 +27,7 @@ function unwrap_fun(expr::Expr, should_unwrap_head::Bool)
2727
elseif expr.head == :block
2828
fexpr = expr.args[2] # separate fexpr from block
2929
else
30-
error("expression not supported")
30+
error("Expression is not supported")
3131
end
3232

3333
head = fexpr.args[1]
@@ -42,7 +42,7 @@ function unwrap_fun(expr::Expr, should_unwrap_head::Bool, should_unwrap_fcall::B
4242
elseif expr.head == :block
4343
fexpr = expr.args[2] # separate fexpr from block
4444
else
45-
error("expression not supported")
45+
error("Expression is not supported")
4646
end
4747

4848
head = fexpr.args[1]
@@ -83,7 +83,7 @@ function wrap_fun(fexpr::Expr)
8383
fexpr = fexpr.args[2] # separate fexpr from block
8484
return fexpr
8585
else
86-
error("expression not supported")
86+
error("Expression is not supported")
8787
end
8888
end
8989

@@ -109,7 +109,7 @@ end
109109
################################################################
110110
function unwrap_fcall(fcall::Expr)
111111
if !(fcall.head == :call)
112-
error("expression is not supported")
112+
error("Expression is not supported")
113113
end
114114
f = fcall.args[1]
115115
args = fcall.args[2:end]

0 commit comments

Comments
 (0)