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

Update explore-the-code.md #2096

Merged
merged 2 commits into from
Aug 28, 2024
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
2 changes: 1 addition & 1 deletion content/md/en/docs/quick-start/explore-the-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ From this manifest, you see that the node template workspace includes three pack
- The `runtime` package provides all of the application logic for handling accounts, balances, transaction fees, and other features that have been included in the node template.

Each member package also has its own manifest—its own `Cargo.toml` file—that contains package-specific information, including dependencies and configuration settings, that are required to compile that member package.
For example, the `Cargo.toml` file for the `node` member of the workspace specifies the name of the package is `node-template` and lists the core libraries and primitives that enable the node template to provide essential blockchain services.
For example, the `Cargo.toml` file for the `node` member of the workspace specifies the name of the package as `node-template` and lists the core libraries and primitives that enable the node template to provide essential blockchain services.
You'll learn more about libraries and primitives in [Architecture and Rust libraries](/learn/architecture).
For now, it's enough to understand the importance of the manifest in describing dependencies and other critical information for each package.

Expand Down
Loading