You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consistently format Julia in the docstring for Base.DEPOT_PATH (#53873)
It is unclear what `Julia` exactly means in this docstring, but the two
occurences of the word have different formatting. The guidelines say
> in docstrings refer to the language as "Julia" and the executable as
"`julia`".
Given that we are not talking about the executable here, I removed the
backticks.
Copy file name to clipboardExpand all lines: base/initdefs.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -75,11 +75,11 @@ Here is an overview of some of the subdirectories that may exist in a depot:
75
75
76
76
* `artifacts`: Contains content that packages use for which Pkg manages the installation of.
77
77
* `clones`: Contains full clones of package repos. Maintained by `Pkg.jl` and used as a cache.
78
-
* `config`: Contains julia-level configuration such as a `startup.jl`
78
+
* `config`: Contains julia-level configuration such as a `startup.jl`.
79
79
* `compiled`: Contains precompiled `*.ji` files for packages. Maintained by Julia.
80
80
* `dev`: Default directory for `Pkg.develop`. Maintained by `Pkg.jl` and the user.
81
81
* `environments`: Default package environments. For instance the global environment for a specific julia version. Maintained by `Pkg.jl`.
82
-
* `logs`: Contains logs of `Pkg` and `REPL` operations. Maintained by `Pkg.jl` and `Julia`.
82
+
* `logs`: Contains logs of `Pkg` and `REPL` operations. Maintained by `Pkg.jl` and Julia.
83
83
* `packages`: Contains packages, some of which were explicitly installed and some which are implicit dependencies. Maintained by `Pkg.jl`.
84
84
* `registries`: Contains package registries. By default only `General`. Maintained by `Pkg.jl`.
85
85
* `scratchspaces`: Contains content that a package itself installs via the [`Scratch.jl`](https://github.com/JuliaPackaging/Scratch.jl) package. `Pkg.gc()` will delete content that is known to be unused.
0 commit comments