Skip to content
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

fix issue #1732 Pkg.dependencies docstring not rendering underscore. #1734

Merged
merged 1 commit into from
Mar 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/Pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,13 @@ The result is a `Dict` that maps a package UUID to a `PackageInfo` struct repres

| Field | Description |
|:------------------|:-----------------------------------------------------------|
| name | The name of the package |
| version | The version of the package (this is `Nothing` for stdlibs) |
| is_direct_dep | The package is a direct dependency |
| is_tracking_path | Whether a package is directly tracking a directory |
| is_pinned | Whether a package is pinned |
| source | The directory containing the source code for that package |
| dependencies | The dependencies of that package as a vector of UUIDs |
| `name` | The name of the package |
| `version` | The version of the package (this is `Nothing` for stdlibs) |
| `is_direct_dep` | The package is a direct dependency |
| `is_tracking_path`| Whether a package is directly tracking a directory |
| `is_pinned` | Whether a package is pinned |
| `source` | The directory containing the source code for that package |
| `dependencies` | The dependencies of that package as a vector of UUIDs |
"""
const dependencies = API.dependencies

Expand Down