Skip to content

Commit

Permalink
fix string type typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjthomas9 committed Dec 22, 2022
1 parent b46135a commit 7c0e538
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/download_filings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function download_filings(
skip_file = true::Bool,
pbar = ProgressBar()::ProgressBar,
stop_pbar = true::Bool,
pbar_desc = "Downloading Filings"::string,
pbar_desc = "Downloading Filings"::String,
running_tests = false::Bool,
)
```
Expand All @@ -61,7 +61,7 @@ function download_filings(
skip_file = true::Bool,
pbar = ProgressBar()::ProgressBar,
stop_pbar = true::Bool,
pbar_desc = "Downloading Filings"::string,
pbar_desc = "Downloading Filings"::String,
running_tests = false::Bool,
)
if download_rate > 10
Expand Down Expand Up @@ -116,7 +116,7 @@ function download_filings(
skip_file=true::Bool,
pbar=ProgressBar()::ProgressBar,
stop_pbar=true::Bool,
pbar_desc="Downloading Filings"::string,
pbar_desc="Downloading Filings"::String,
running_tests=false::Bool
)
```
Expand All @@ -142,7 +142,7 @@ function download_filings(
skip_file = true::Bool,
pbar = ProgressBar()::ProgressBar,
stop_pbar = true::Bool,
pbar_desc = "Downloading Filings"::string,
pbar_desc = "Downloading Filings"::String,
running_tests = false::Bool,
)

Expand Down

2 comments on commit 7c0e538

@tylerjthomas9
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/74534

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.3 -m "<description of version>" 7c0e53873a85dffad7ac60c9caf1dcb88c2ee3b8
git push origin v0.7.3

Please sign in to comment.