Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/remote_methods.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ for converting leaves are:

2. If it's an `AbstractString`, apply `string` function (e.g, to remove `SubString`s).

3. In all other cases, except `AbstractArray`s, wrap in single quotes, as in sum -> "`sum`".
3. In all other cases, except `AbstractArray`s, first wrap in single quotes, as in sum -> "\`sum\`".

4. Replace any `#` character in the application of Rule 3 with `_` (to handle `gensym` names)

5. For an `AbstractVector`, broadcast the preceding Rules over its elements.
Expand Down
Loading