-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Update basedocs.jl for $ #34035
Update basedocs.jl for $ #34035
Conversation
Need help with falling builds |
Could anyone help me what's wrong? |
Take at solving part of #33666 . This is the Google Code-in task (https://codein.withgoogle.com/dashboard/task-instances/5757413873942528/) Hi @Delta456, please add a description for your pull request to enable other members to help. Please use this page for the docstring description for '$' - (https://github.com/JuliaLang/julia/blob/master/doc/src/base/punctuation.md) |
Please see the basedocs.jl of this merged pull request (https://github.com/JuliaLang/julia/pull/33344/files) |
A big welcome to all the Code-In contributors. |
base/docs/basedocs.jl
Outdated
|
||
# Examples | ||
```jldoctest | ||
julia> name = Joe |
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.
This is incorrect. It should be name = "Joe"
base/docs/basedocs.jl
Outdated
# Examples | ||
```jldoctest | ||
julia> name = Joe | ||
Joe |
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.
And here too: "Joe"
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.
damn
Also, this needs a rebase. |
Hi @Delta456 , this is a sample PR that I've made (#33824), please get your basedocs.jl correct. Create an issue for your failing builds ( this is a sample I've created [https://github.com//issues/33844] ) and i will accept the task! |
@jaideep-seth I think the compiler should also allow |
base/docs/basedocs.jl
Outdated
@@ -447,6 +447,23 @@ julia> A' | |||
""" | |||
kw"'" | |||
|
|||
""" | |||
"\$" |
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.
No " "
here please. This should be just \$
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.
Why
Hello @abhishalya & @Delta456 , please take up some of these task instances - (https://codein.withgoogle.com/tasks/5659574762209280/?sp-page=5) |
@jaideep-seth Thanks, but I think I might just leave that for new people since we've already done some Beginner tasks. |
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.
This looks good to me. Thanks for the doc improvement. Anyone familiar with documenter stuff know if this is the right way to attach docs to the $
symbol? Maybe @fredrikekre?
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.
This needs a rebase!
Also, it would be much better to have the commits squashed into one.
It's easy to squash the commits into a single one through the GitHub interface, so don't worry about that :) |
Task for Google Code In 2019
Add docstring of '$' for interpolation at the REPL. Solves #33666