Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
add task to done section
Browse files Browse the repository at this point in the history
  • Loading branch information
udohjeremiah committed Mar 18, 2023
1 parent 8cc6737 commit f4429b6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
7 changes: 3 additions & 4 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@ To see what's happening in a section, click on the arrow symbol (▶).
## In Progress...

<details><summary></summary>

- [ ] Create the `.JuliaFormatter.jl` file and use `BlueStyle`:
[fix-ci-failure](https://github.com/udohjeremiah/REPLference.jl/tree/fix-ci-failure)
[@udohjeremiah](https://github.com/udohjeremiah)
</details>

## Done ✓
Expand All @@ -83,4 +79,7 @@ To see what's happening in a section, click on the arrow symbol (▶).
- [x] Format the code to use `BlueStyle` via `JuliaFormatter.jl`:
[`#57`](https://github.com/udohjeremiah/REPLference.jl/pull/57)
[@udohjeremiah](https://github.com/udohjeremiah)
- [x] Create the `.JuliaFormatter.jl` file and use `BlueStyle`:
[`#60`](https://github.com/udohjeremiah/REPLference.jl/pull/60)
[@udohjeremiah](https://github.com/udohjeremiah)
</details>
10 changes: 6 additions & 4 deletions src/utility_script.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ function _names_to_dict()
line,
)
if !in([m, line_match["name"]], forbidden_names)
docstring =
string(Docs.doc(Docs.Binding(m, Symbol(line_match["name"]))))
docstring = string(
Docs.doc(Docs.Binding(m, Symbol(line_match["name"])))
)
else
docstring = ""
end
Expand Down Expand Up @@ -73,8 +74,9 @@ function _names_to_dict()
end
else
doc1 = string(Docs.doc(Docs.Binding(m, Symbol(line_match["name"]))))
doc2 =
string(Docs.doc(Docs.Binding(m, Symbol(line_match["summary"]))))
doc2 = string(
Docs.doc(Docs.Binding(m, Symbol(line_match["summary"])))
)
if doc1 != doc2
push!(names_dict[:Constants], string(m, '.', name))
end
Expand Down

0 comments on commit f4429b6

Please sign in to comment.