-
-
Notifications
You must be signed in to change notification settings - Fork 47
issue_250_software_engineering #262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Jonah-Heyl
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I add mu to the format_myst.jl dictionary
| function foo(μ = 1., σ = 2.) | ||
| d = Normal(μ, σ) | ||
| function foo(;mu = 1., sigma = 2.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would turn this back to foo(mu = 1., sigma = 2.)
YOu don't want to use keyword only functions very often. Just for those convenience constructors and occiaonlly a few other things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have changed this and gone through and changed the function calls as well.
| * Modify the `foo` function definition to add `println("Modified foo definition")` inside the function | ||
| ```{code-block} julia | ||
| function foo(μ = 1., σ = 2.) | ||
| function foo(;mu = 1., sigma = 2.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing here and beyond. Don't use a kw only arguemnts.
Jonah-Heyl
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In testing.md what should be done about the function on lines 140-148. The julia is v"1.8"
No description provided.