Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cecoeco committed May 27, 2024
1 parent ae69771 commit 3a53db0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/strings_docstrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ julia> fruit = ["apple", "banana", "pear", "pineapple"]; str_locate(fruit[1], "e
(5, 5)
julia> fruit = ["apple", "banana", "pear", "pineapple"]; str_locate(fruit[2], "a")
(1, 1)
(2, 2)
```
"""
const docstring_str_locate_all =
Expand All @@ -638,9 +638,10 @@ julia> fruit = ["apple", "banana", "pear", "pineapple"]; str_locate_all(fruit[1]
(5, 5)
julia> fruit = ["apple", "banana", "pear", "pineapple"]; str_locate_all(fruit[2], "a")
2-element Vector{Tuple{Int64, Int64}}:
(1, 1)
(5, 5)
3-element Vector{Tuple{Int64, Int64}}:
(2, 2)
(4, 4)
(6, 6)
```
"""

Expand Down

0 comments on commit 3a53db0

Please sign in to comment.