diff --git a/base/reducedim.jl b/base/reducedim.jl index 510f818e2e7c2..ba3a487530b21 100644 --- a/base/reducedim.jl +++ b/base/reducedim.jl @@ -72,7 +72,7 @@ function reduced_dims(::Tuple{}, d::Int) end reduced_dims(::Tuple{}, region) = () function reduced_dims(dims::Dims, region) - map(last, reduced_dims(map(n->OneTo(n), dims), region)) + map(last, reduced_indices(map(OneTo, dims), region)) end function reduced_dims0(::Tuple{}, d::Int) @@ -81,7 +81,7 @@ function reduced_dims0(::Tuple{}, d::Int) end reduced_dims0(::Tuple{}, region) = () function reduced_dims0(dims::Dims, region) - map(last, reduced_dims0(map(n->OneTo(n), dims), region)) + map(last, reduced_indices0(map(OneTo, dims), region)) end diff --git a/doc/manual/getting-started.rst b/doc/manual/getting-started.rst index d89a4bd61ad1b..8e81d4511a7f0 100644 --- a/doc/manual/getting-started.rst +++ b/doc/manual/getting-started.rst @@ -169,6 +169,6 @@ help new users get started with Julia: - `Tutorial for Homer Reid's numerical analysis class `_ - `An introductory presentation `_ - `Videos from the Julia tutorial at MIT `_ -- `Forio Julia Tutorials `_ +- `Forio Julia Tutorials `_ - `YouTube videos from the JuliaCons `_ diff --git a/doc/manual/packages.rst b/doc/manual/packages.rst index e32565dafcf72..7af6de2585b1b 100644 --- a/doc/manual/packages.rst +++ b/doc/manual/packages.rst @@ -360,7 +360,7 @@ We recommend that you create a `free account `_ on GitH where ``USERNAME`` is your actual GitHub user name. Once you do this, the package manager knows your GitHub user name and can configure things accordingly. -You should also `upload `_ your public SSH key to GitHub and set up an `SSH agent `_ on your development machine so that you can push changes with minimal hassle. +You should also `upload `_ your public SSH key to GitHub and set up an `SSH agent `_ on your development machine so that you can push changes with minimal hassle. In the future, we will make this system extensible and support other common git hosting options like `BitBucket `_ and allow developers to choose their favorite. Since the package development functions has been moved to the `PkgDev `_ package, you need to run ``Pkg.add("PkgDev"); import PkgDev`` to access the functions starting with ``PkgDev.`` in the document below. diff --git a/doc/manual/parallel-computing.rst b/doc/manual/parallel-computing.rst index d61d7787f2b20..a7b2e73790f0f 100644 --- a/doc/manual/parallel-computing.rst +++ b/doc/manual/parallel-computing.rst @@ -1103,6 +1103,6 @@ It is very important that the called function does not call back into Julia. .. rubric:: Footnotes -.. [#mpi2rma] In this context, MPI refers to the MPI-1 standard. Beginning with MPI-2, the MPI standards committee introduced a new set of communication mechanisms, collectively referred to as Remote Memory Access (RMA). The motivation for adding RMA to the MPI standard was to facilitate one-sided communication patterns. For additional information on the latest MPI standard, see http://www.mpi-forum.org/docs. +.. [#mpi2rma] In this context, MPI refers to the MPI-1 standard. Beginning with MPI-2, the MPI standards committee introduced a new set of communication mechanisms, collectively referred to as Remote Memory Access (RMA). The motivation for adding RMA to the MPI standard was to facilitate one-sided communication patterns. For additional information on the latest MPI standard, see http://mpi-forum.org/docs. .. _DArray: https://github.com/JuliaParallel/DistributedArrays.jl