Skip to content

Commit

Permalink
Merge pull request #36 from ghyatzo/issue35
Browse files Browse the repository at this point in the history
added single expression substitution
  • Loading branch information
chakravala committed Mar 18, 2020
2 parents 0865869 + 3700420 commit e77a30f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/args.jl
Expand Up @@ -311,6 +311,7 @@ sub(s::Pair{<:Any,<:Any},expr) = sub(Dict(s),expr)
sub(s::Array{<:Pair{<:Any,<:Any},1},expr) = sub(Dict(s...),expr)
sub(s::Symbol,expr) = sub(string(s),expr)
sub(s::T,expr) where T <: Tuple = sub(string(list(s)),expr)
sub(s::Expr,expr) = sub(string(list(s)),expr)

@doc """
on(::Symbol...)
Expand Down

0 comments on commit e77a30f

Please sign in to comment.