Skip to content

Commit

Permalink
remove failing doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
archermarx committed Jul 5, 2023
1 parent 74ba57d commit 895bb32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ false
`@$` allows users to create general partial functions by replacing the currently unknown
arguments with `_`. For example, we can implement matrix multiplication as:

```jldoctest
```julia-repl
julia> matmul(A, X, B) = A * X .+ B
matmul (generic function with 1 method)
Expand Down
5 changes: 3 additions & 2 deletions src/PartialFunctions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ module PartialFunctions

using MacroTools

export $, @$
export $
export @$
export <|
include("reversedfunctions.jl")

Expand Down Expand Up @@ -96,7 +97,7 @@ Partially apply the given arguments to `f`. Unknown arguments are represented by
# Examples
```jldoctest
```julia-repl
julia> matmul(A, X, B; C = 1) = A * X .+ B .* C
matmul (generic function with 1 method)
Expand Down

0 comments on commit 895bb32

Please sign in to comment.