Skip to content

Commit

Permalink
more attempts to fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
archermarx committed Oct 6, 2020
1 parent a8fa29e commit 39a5976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/index.md
Expand Up @@ -13,13 +13,13 @@ This is a small Julia package that makes partial function application as simple

To apply an argument `x` to a function `f`, use the `$` binary operator like so

```jldoctest
```julia-repl
julia> f $ x
f(x, ...)
```

To apply multiple arguments, wrap them in a `Tuple`, like you would a normal function call
```jldoctest
```julia-repl
julia> f $ (x, y, z)
f(x, y, z, ...)
```
Expand Down

0 comments on commit 39a5976

Please sign in to comment.