We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add anchors to all subsection headings. Accomplished with this perl one-liner: perl -i -ple 'if (/^#+\s*(.*?)\s*$/) { my $name = $1; $name =~ s/\W+/ /g; $name =~ s/^\s+//; $name =~ s/\s+$//; $name =~ s/ /-/g; s{^(#+)\s*(.*?)\s*$}{<a name="$name"/>\n$1 $2} }' *.md
Adding more on Tasks. Other small changes, including describing the real behavor of chained comparisons.
Switch all headings to using the ## style instead of underlining.
Merge branch 'master' of github.com:JuliaLang/julia.wiki * 'master' of github.com:JuliaLang/julia.wiki: Add some links to various wikipedia articles. Add gamma and lgamma functions to Mathematical Functions. Fix wording of atan2 explanation; tweak explanation of ldexp. Remove all references to vectors, vectorization or .<op> forms. Updated Mathematical Operations (markdown) Change location and wording of link to John D. Cook's blog post. Much more complete coverage of Mathematical Functions. Updated Strings (markdown) Replace residual LaTeX \emph{not} with *not*. In markdown, `String`s just looks awkward, so avoid it. Add a note about the manual not being complete yet.
Link to Strings from Command Interpolation
Add some links to various wikipedia articles.
Add gamma and lgamma functions to Mathematical Functions.
Fix wording of atan2 explanation; tweak explanation of ldexp.
Remove all references to vectors, vectorization or .<op> forms.
Updated Mathematical Operations (markdown)
Change location and wording of link to John D. Cook's blog post.
Much more complete coverage of Mathematical Functions.
Updated Strings (markdown)
Replace residual LaTeX \emph{not} with *not*.
In markdown, `String`s just looks awkward, so avoid it.
Add a note about the manual not being complete yet.
Merge branch 'master' of github.com:JuliaLang/julia.wiki * 'master' of github.com:JuliaLang/julia.wiki: Add a stub for Metaprogramming.
Add an Overview section to Home.
Add a stub for Metaprogramming.
Add section on Running External Programs.
Some minor edits to Methods.
Add ported section on Methods.
Factor Conversion and Promotion into its own section.
Rename "record type" to "composite type".
Port the Types section to the wiki.
TODO note about explaining let blocks.
Add wiki page on Variables and Scoping.
Add note about using & and | for non-short-circuit boolean operations. A couple of other edits too.
Remove note about sqrt(-1 + 0im) == 0 + 1im.
Fix TODO note about chained comparison ordering.