Skip to content

Commit 53f3eef

Browse files
serban300dharjeezy
authored andcommitted
1 parent 29e45d9 commit 53f3eef

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/check-links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Check links
33
on:
44
pull_request:
55
paths:
6-
- "*.rs"
7-
- "*.prdoc"
6+
- "**.rs"
7+
- "**.prdoc"
88
- ".github/workflows/check-links.yml"
99
- ".config/lychee.toml"
1010
types: [opened, synchronize, reopened, ready_for_review]

docs/sdk/src/polkadot_sdk/substrate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
//! demonstration.
100100
//! * [`chain_spec_builder`]: Utility to build more detailed chain-specs for the aforementioned
101101
//! node. Other projects typically contain a `build-spec` subcommand that does the same.
102-
//! * [`node_template`](https://github.com/paritytech/polkadot-sdk/tree/master/substrate/bin/node-template):
102+
//! * [`node_template`](https://github.com/paritytech/polkadot-sdk/tree/master/substrate/bin/node):
103103
//! a template node that contains a minimal set of features and can act as a starting point of a
104104
//! project.
105105
//! * [`subkey`]: Substrate's key management utility.

docs/sdk/src/polkadot_sdk/templates.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@
2222
//! - [`frontier-parachain-template`](https://github.com/paritytech/frontier-parachain-template): A
2323
//! parachain template for launching EVM-compatible parachains.
2424
//!
25-
//! [`substrate-node-template`]: https://github.com/paritytech/polkadot-sdk/blob/master/substrate/bin/node-template/
26-
//! [`substrate-minimal-template`]: https://github.com/paritytech/polkadot-sdk/blob/master/substrate/bin/minimal/
27-
//! [`cumulus-parachain-template`]: https://github.com/paritytech/polkadot-sdk/blob/master/cumulus/parachain-template/
25+
//! [`minimal-template`]: https://github.com/paritytech/polkadot-sdk/blob/master/templates/minimal/
26+
//! [`parachain-template`]: https://github.com/paritytech/polkadot-sdk/blob/master/templates/parachain/
2827
2928
// TODO: in general, we need to make a deliberate choice here of moving a few key templates to this
3029
// repo (nothing stays in `substrate-developer-hub`) and the everything else should be community

docs/sdk/src/reference_docs/runtime_vs_smart_contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
//! - **Contract Code Updates**: Once deployed, although typically immutable, Smart Contracts can be
118118
//! upgraded, but lack of migration logic. The [pallet_contracts](../../../pallet_contracts/index.html)
119119
//! allows for contracts to be upgraded by exposing the `set_code` dispatchable. More details on this
120-
//! can be found in [Ink! documentation on upgradeable contracts](https://use.ink/5.x/basics/upgradeable-contracts).
120+
//! can be found in [Ink! documentation on upgradeable contracts](https://use.ink/basics/upgradeable-contracts).
121121
//! - **Isolated Impact**: Upgrades or changes to a smart contract generally impact only that
122122
//! contract and its users, unlike Runtime upgrades that have a network-wide effect.
123123
//! - **Simplicity and Rapid Development**: The development cycle for Smart Contracts is usually

0 commit comments

Comments
 (0)