From f4429b6aab9ba815598954e221aa9b26424966cd Mon Sep 17 00:00:00 2001 From: Udoh Jeremiah Date: Sat, 18 Mar 2023 04:59:08 +0100 Subject: [PATCH] add task to done section --- TODO.md | 7 +++---- src/utility_script.jl | 10 ++++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/TODO.md b/TODO.md index de4cc50..ac1b1c6 100644 --- a/TODO.md +++ b/TODO.md @@ -70,10 +70,6 @@ To see what's happening in a section, click on the arrow symbol (▶). ## In Progress...
- -- [ ] 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)
## Done ✓ @@ -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) diff --git a/src/utility_script.jl b/src/utility_script.jl index 2ef3440..c3e494b 100644 --- a/src/utility_script.jl +++ b/src/utility_script.jl @@ -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 @@ -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