Skip to content

Commit bacf4ad

Browse files
committed
docs: fix bare URL warnings in Rust documentation
Convert all bare URLs to proper hyperlinks by wrapping them with angle brackets. This resolves the "this URL is not a hyperlink" warnings when running make docs-rust. Changes: - Wrapped all bare URLs in documentation comments with <> brackets - Fixed URLs in module-level docs (//\!), regular docs (///), and comments (//) - Processed all .rs files in the workspace excluding build artifacts All documentation URLs are now properly formatted as clickable hyperlinks in the generated API documentation.
1 parent e336cf2 commit bacf4ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+546
-546
lines changed

cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn setup_var_from_single_and_only_thread() {
6060
}
6161

6262
/// Mimic default hook:
63-
/// https://github.com/rust-lang/rust/blob/5986ff05d8480da038dd161b3a6aa79ff364a851/library/std/src/panicking.rs#L246
63+
/// <https://github.com/rust-lang/rust/blob/5986ff05d8480da038dd161b3a6aa79ff364a851/library/std/src/panicking.rs#L246>
6464
///
6565
/// Unlike the default hook, this one allocates.
6666
/// We store (+ display) panics in non-main threads, and display them all when the main thread panics.

core/src/block/prevalidate.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ pub fn prevalidate_block(
113113
validate_constants(block, genesis)?;
114114

115115
// TODO(tizoc): check for InvalidDeltaBlockChainProof
116-
// https://github.com/MinaProtocol/mina/blob/d800da86a764d8d37ffb8964dd8d54d9f522b358/src/lib/mina_block/validation.ml#L369
117-
// https://github.com/MinaProtocol/mina/blob/d800da86a764d8d37ffb8964dd8d54d9f522b358/src/lib/transition_chain_verifier/transition_chain_verifier.ml
116+
// <https://github.com/MinaProtocol/mina/blob/d800da86a764d8d37ffb8964dd8d54d9f522b358/src/lib/mina_block/validation.ml#L369>
117+
// <https://github.com/MinaProtocol/mina/blob/d800da86a764d8d37ffb8964dd8d54d9f522b358/src/lib/transition_chain_verifier/transition_chain_verifier.ml>
118118

119119
Ok(())
120120
}

ledger/src/account/account.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ impl TokenId {
7676
}
7777
}
7878

79-
// https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/account.ml#L93
79+
// <https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/account.ml#L93>
8080
#[derive(Clone, PartialEq, Eq, derive_more::From)]
8181
pub struct TokenSymbol(pub Vec<u8>);
8282

@@ -135,7 +135,7 @@ impl TokenSymbol {
135135
impl Default for TokenSymbol {
136136
fn default() -> Self {
137137
// empty string
138-
// https://github.com/MinaProtocol/mina/blob/3fe924c80a4d01f418b69f27398f5f93eb652514/src/lib/mina_base/account.ml#L133
138+
// <https://github.com/MinaProtocol/mina/blob/3fe924c80a4d01f418b69f27398f5f93eb652514/src/lib/mina_base/account.ml#L133>
139139
Self(Vec::new())
140140
}
141141
}
@@ -154,7 +154,7 @@ impl From<&TokenSymbol> for mina_p2p_messages::string::TokenSymbol {
154154

155155
impl ToInputs for TokenSymbol {
156156
fn to_inputs(&self, inputs: &mut Inputs) {
157-
// https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97
157+
// <https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97>
158158
//assert!(self.len() <= 6);
159159

160160
let mut s = <[u8; 6]>::default();
@@ -169,7 +169,7 @@ pub struct SetVerificationKey<Controller> {
169169
pub txn_version: TxnVersion,
170170
}
171171

172-
// https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/permissions.mli#L49
172+
// <https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/permissions.mli#L49>
173173
#[derive(Clone, Debug, PartialEq, Eq)]
174174
pub struct Permissions<Controller> {
175175
pub edit_state: Controller,
@@ -333,7 +333,7 @@ impl Permissions<AuthRequired> {
333333
}
334334
}
335335

336-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L385
336+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L385>
337337
pub fn gen(auth_tag: ControlTag) -> Self {
338338
let mut rng = rand::thread_rng();
339339

@@ -376,7 +376,7 @@ pub enum ProofVerified {
376376
}
377377

378378
impl ProofVerified {
379-
/// https://github.com/MinaProtocol/mina/blob/47a269c2e917775b34a83775b8a55fcc44830831/src/lib/pickles_base/proofs_verified.ml#L17
379+
/// <https://github.com/MinaProtocol/mina/blob/47a269c2e917775b34a83775b8a55fcc44830831/src/lib/pickles_base/proofs_verified.ml#L17>
380380
pub fn to_int(&self) -> usize {
381381
match self {
382382
ProofVerified::N0 => 0,
@@ -387,7 +387,7 @@ impl ProofVerified {
387387
}
388388

389389
impl ToInputs for ProofVerified {
390-
/// https://github.com/MinaProtocol/mina/blob/436023ba41c43a50458a551b7ef7a9ae61670b25/src/lib/pickles_base/proofs_verified.ml#L125
390+
/// <https://github.com/MinaProtocol/mina/blob/436023ba41c43a50458a551b7ef7a9ae61670b25/src/lib/pickles_base/proofs_verified.ml#L125>
391391
fn to_inputs(&self, inputs: &mut Inputs) {
392392
let bits = match self {
393393
ProofVerified::N0 => [true, false, false],
@@ -517,7 +517,7 @@ impl ToInputs for VerificationKey {
517517
}
518518

519519
impl VerificationKey {
520-
/// https://github.com/MinaProtocol/mina/blob/436023ba41c43a50458a551b7ef7a9ae61670b25/src/lib/pickles/side_loaded_verification_key.ml#L310
520+
/// <https://github.com/MinaProtocol/mina/blob/436023ba41c43a50458a551b7ef7a9ae61670b25/src/lib/pickles/side_loaded_verification_key.ml#L310>
521521
pub fn dummy() -> Arc<Self> {
522522
static VK: OnceCell<Arc<VerificationKey>> = OnceCell::new();
523523

@@ -648,7 +648,7 @@ impl ToFieldElements<Fp> for Option<&ZkAppUri> {
648648
}
649649

650650
impl ToInputs for Option<&ZkAppUri> {
651-
/// https://github.com/MinaProtocol/mina/blob/3fe924c80a4d01f418b69f27398f5f93eb652514/src/lib/mina_base/zkapp_account.ml#L313
651+
/// <https://github.com/MinaProtocol/mina/blob/3fe924c80a4d01f418b69f27398f5f93eb652514/src/lib/mina_base/zkapp_account.ml#L313>
652652
fn to_inputs(&self, inputs: &mut Inputs) {
653653
let field_zkapp_uri = ZkAppUri::opt_to_field(*self);
654654
inputs.append(&field_zkapp_uri);
@@ -787,7 +787,7 @@ impl VerificationKeyWire {
787787
}
788788
}
789789

790-
// https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/zkapp_account.ml#L148-L170
790+
// <https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/zkapp_account.ml#L148-L170>
791791
#[derive(Clone, Debug, PartialEq, Eq)]
792792
pub struct ZkAppAccount {
793793
pub app_state: [Fp; 8],
@@ -1265,7 +1265,7 @@ pub struct PermsConst {
12651265
pub or_const: bool,
12661266
}
12671267

1268-
// https://github.com/MinaProtocol/mina/blob/1765ba6bdfd7c454e5ae836c49979fa076de1bea/src/lib/mina_base/account.ml#L368
1268+
// <https://github.com/MinaProtocol/mina/blob/1765ba6bdfd7c454e5ae836c49979fa076de1bea/src/lib/mina_base/account.ml#L368>
12691269
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
12701270
#[serde(into = "v2::MinaBaseAccountBinableArgStableV2")]
12711271
#[serde(try_from = "v2::MinaBaseAccountBinableArgStableV2")]
@@ -1487,7 +1487,7 @@ impl Account {
14871487
}
14881488
}
14891489

1490-
/// https://github.com/MinaProtocol/mina/blob/2ff0292b637684ce0372e7b8e23ec85404dc5091/src/lib/mina_base/account.ml#L794
1490+
/// <https://github.com/MinaProtocol/mina/blob/2ff0292b637684ce0372e7b8e23ec85404dc5091/src/lib/mina_base/account.ml#L794>
14911491
pub fn has_permission_to(&self, control: ControlTag, to: PermissionTo) -> bool {
14921492
match to {
14931493
PermissionTo::Access => check_permission(self.permissions.access, control),
@@ -1741,7 +1741,7 @@ impl ToInputs for Account {
17411741
// Self::balance
17421742
inputs.append_u64(balance.as_u64());
17431743
// Self::token_symbol
1744-
// https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97
1744+
// <https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97>
17451745
assert!(token_symbol.len() <= 6);
17461746
inputs.append(token_symbol);
17471747
// Self::token_id

ledger/src/account/common.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ impl Default for ReceiptChainHash {
140140
/// point minimum balance drops to 0, and after that the account behaves
141141
/// like an untimed one. *)
142142
///
143-
/// https://github.com/MinaProtocol/mina/blob/2ff0292b637684ce0372e7b8e23ec85404dc5091/src/lib/mina_base/account_timing.ml#L22
143+
/// <https://github.com/MinaProtocol/mina/blob/2ff0292b637684ce0372e7b8e23ec85404dc5091/src/lib/mina_base/account_timing.ml#L22>
144144
#[derive(Clone, Debug, PartialEq, Eq)]
145145
pub enum Timing {
146146
Untimed,
@@ -227,10 +227,10 @@ pub struct TimingAsRecordChecked<F: FieldWitness> {
227227
pub vesting_increment: CheckedAmount<F>,
228228
}
229229

230-
// https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_numbers/intf.ml#L155
230+
// <https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_numbers/intf.ml#L155>
231231
// pub type Nonce = u32;
232232

233-
// https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/token_permissions.ml#L9
233+
// <https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/token_permissions.ml#L9>
234234
#[derive(Clone, Debug, PartialEq, Eq)]
235235
pub enum TokenPermissions {
236236
TokenOwned { disable_new_accounts: bool },
@@ -245,7 +245,7 @@ impl Default for TokenPermissions {
245245
}
246246
}
247247

248-
// https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/permissions.mli#L10
248+
// <https://github.com/MinaProtocol/mina/blob/develop/src/lib/mina_base/permissions.mli#L10>
249249
#[derive(Copy, Clone, Debug, PartialEq, Eq, Serialize, Deserialize, strum_macros::Display)]
250250
#[serde(rename_all = "lowercase")]
251251
pub enum AuthRequired {
@@ -264,7 +264,7 @@ impl Default for AuthRequired {
264264
}
265265

266266
impl From<ControlTag> for AuthRequired {
267-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L68
267+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L68>
268268
fn from(value: ControlTag) -> Self {
269269
match value {
270270
ControlTag::Proof => Self::Proof,
@@ -301,7 +301,7 @@ impl AuthRequired {
301301

302302
/// permissions such that [check permission (Proof _)] is true
303303
///
304-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L78
304+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L78>
305305
pub fn gen_for_proof_authorization(rng: &mut rand::rngs::ThreadRng) -> Self {
306306
use rand::seq::SliceRandom;
307307

@@ -313,7 +313,7 @@ impl AuthRequired {
313313

314314
/// permissions such that [check permission (Signature _)] is true
315315
///
316-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L82
316+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L82>
317317
pub fn gen_for_signature_authorization(rng: &mut rand::rngs::ThreadRng) -> Self {
318318
use rand::seq::SliceRandom;
319319

@@ -325,7 +325,7 @@ impl AuthRequired {
325325

326326
/// permissions such that [check permission None_given] is true
327327
///
328-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L86
328+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_base/permissions.ml#L86>
329329
pub fn gen_for_none_given_authorization(_rng: &mut rand::rngs::ThreadRng) -> Self {
330330
Self::None
331331
}

ledger/src/account/conv.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ where
148148
}
149149

150150
/// Note: Refactor when `core::array::try_map` is stable
151-
/// https://github.com/rust-lang/rust/issues/79711
151+
/// <https://github.com/rust-lang/rust/issues/79711>
152152
pub fn try_array_into_with<'a, T, E, U, F, const N: usize>(
153153
value: &'a [T; N],
154154
fun: F,

ledger/src/account/legacy.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl Hashable for SnappAccount {
9191
} else {
9292
roi = roi.append_field(
9393
// Value of `dummy_vk_hash`:
94-
// https://github.com/MinaProtocol/mina/blob/4f765c866b81fa6fed66be52707fd91fd915041d/src/lib/mina_base/snapp_account.ml#L116
94+
// <https://github.com/MinaProtocol/mina/blob/4f765c866b81fa6fed66be52707fd91fd915041d/src/lib/mina_base/snapp_account.ml#L116>
9595
Fp::from_hex("77a430a03efafd14d72e1a3c45a1fdca8267fcce9a729a1d25128bb5dec69d3f")
9696
.unwrap(),
9797
);
@@ -111,7 +111,7 @@ impl Hashable for SnappAccount {
111111
}
112112
}
113113

114-
// https://github.com/MinaProtocol/mina/blob/1765ba6bdfd7c454e5ae836c49979fa076de1bea/src/lib/mina_base/account.ml#L368
114+
// <https://github.com/MinaProtocol/mina/blob/1765ba6bdfd7c454e5ae836c49979fa076de1bea/src/lib/mina_base/account.ml#L368>
115115
#[derive(Clone, Debug)]
116116
pub struct AccountLegacy {
117117
pub public_key: CompressedPubKey, // Public_key.Compressed.t
@@ -145,7 +145,7 @@ impl Hashable for AccountLegacy {
145145

146146
// Self::token_symbol
147147

148-
// https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97
148+
// <https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97>
149149
// assert!(self.token_symbol.len() <= 6);
150150

151151
// if !self.token_symbol.is_empty() {
@@ -286,7 +286,7 @@ impl Hashable for AccountLegacy {
286286

287287
// // Self::token_symbol
288288

289-
// // https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97
289+
// // <https://github.com/MinaProtocol/mina/blob/2fac5d806a06af215dbab02f7b154b4f032538b7/src/lib/mina_base/account.ml#L97>
290290
// // assert!(self.token_symbol.len() <= 6);
291291

292292
// // if !self.token_symbol.is_empty() {

ledger/src/base.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ impl LedgerIntf for Mask {
246246
BaseLedger::set(self, addr.clone(), account)
247247
}
248248

249-
/// https://github.com/MinaProtocol/mina/blob/05c2f73d0f6e4f1341286843814ce02dcb3919e0/src/lib/mina_ledger/ledger.ml#L311
249+
/// <https://github.com/MinaProtocol/mina/blob/05c2f73d0f6e4f1341286843814ce02dcb3919e0/src/lib/mina_ledger/ledger.ml#L311>
250250
fn get_or_create(
251251
&mut self,
252252
account_id: &AccountId,
@@ -271,7 +271,7 @@ impl LedgerIntf for Mask {
271271
Ok((action, account, addr))
272272
}
273273

274-
/// https://github.com/MinaProtocol/mina/blob/05c2f73d0f6e4f1341286843814ce02dcb3919e0/src/lib/mina_ledger/ledger.ml#L304
274+
/// <https://github.com/MinaProtocol/mina/blob/05c2f73d0f6e4f1341286843814ce02dcb3919e0/src/lib/mina_ledger/ledger.ml#L304>
275275
fn create_new_account(&mut self, account_id: AccountId, account: Account) -> Result<(), ()> {
276276
match BaseLedger::get_or_create_account(self, account_id, account).unwrap() {
277277
GetOrCreated::Added(_) => {}
@@ -315,7 +315,7 @@ impl LedgerIntf for Mask {
315315

316316
fn apply_mask(&mut self, mask: Self) {
317317
// ignore `self` here:
318-
// https://github.com/MinaProtocol/mina/blob/f6756507ff7380a691516ce02a3cf7d9d32915ae/src/lib/mina_ledger/ledger.ml#L236-L246
318+
// <https://github.com/MinaProtocol/mina/blob/f6756507ff7380a691516ce02a3cf7d9d32915ae/src/lib/mina_ledger/ledger.ml#L236-L246>
319319
mask.commit()
320320
}
321321

ledger/src/cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ macro_rules! cache {
1010
// The destructor won't be run, but we don't care.
1111
//
1212
// See
13-
// https://github.com/rust-lang/rust/blob/635c4a5e612b0ee8af6615635599702d3dce9906/library/std/src/sys/common/thread_local/fast_local.rs#
13+
// <https://github.com/rust-lang/rust/blob/635c4a5e612b0ee8af6615635599702d3dce9906/library/std/src/sys/common/thread_local/fast_local.rs#>
1414

1515
use std::mem::ManuallyDrop;
1616
use std::cell::RefCell;

ledger/src/dummy/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::VerificationKey;
1111
pub mod for_tests;
1212

1313
/// Value of `vk` when we run `dune runtest src/lib/staged_ledger -f`
14-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/staged_ledger/staged_ledger.ml#L2083
14+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/staged_ledger/staged_ledger.ml#L2083>
1515
///
1616
/// The file was generated this way:
1717
///
@@ -35,7 +35,7 @@ pub fn trivial_verification_key() -> VerificationKey {
3535
}
3636

3737
/// Value of a dummy proof when we run `dune runtest src/lib/staged_ledger -f`
38-
/// https://github.com/MinaProtocol/mina/blob/d7dad23d8ea2052f515f5d55d187788fe0701c7f/src/lib/mina_base/control.ml#L94
38+
/// <https://github.com/MinaProtocol/mina/blob/d7dad23d8ea2052f515f5d55d187788fe0701c7f/src/lib/mina_base/control.ml#L94>
3939
///
4040
/// The file was generated this way:
4141
///

ledger/src/generators/mod.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub mod user_command;
44
pub mod zkapp_command;
55
pub mod zkapp_command_builder;
66

7-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L20
7+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L20>
88
#[derive(Clone, Debug)]
99
pub enum Role {
1010
FeePayer,
@@ -13,7 +13,7 @@ pub enum Role {
1313
NewTokenAccount,
1414
}
1515

16-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L7
16+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L7>
1717
#[derive(Clone, Debug)]
1818
pub enum NotPermitedOf {
1919
Delegate,
@@ -26,7 +26,7 @@ pub enum NotPermitedOf {
2626
Receive,
2727
}
2828

29-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L7
29+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L7>
3030
#[derive(Clone, Debug)]
3131
pub enum Failure {
3232
InvalidAccountPrecondition,
@@ -42,10 +42,10 @@ pub enum Failure {
4242
/// when we have separate transaction accounts in integration tests
4343
/// this number can be increased
4444
///
45-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L1111
45+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L1111>
4646
const MAX_ACCOUNT_UPDATES: usize = 2;
4747

48-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L1113
48+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L1113>
4949
const MAX_TOKEN_UPDATES: usize = 2;
5050

5151
/// Value when we run `dune runtest src/lib/staged_ledger -f`
@@ -55,5 +55,5 @@ const MINIMUM_USER_COMMAND_FEE: Fee = Fee::from_u64(1000000);
5555

5656
/// Value of `ledger_depth` when we run `dune runtest src/lib/staged_ledger -f`
5757
///
58-
/// https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/user_command_generators.ml#L15
58+
/// <https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/user_command_generators.ml#L15>
5959
const LEDGER_DEPTH: usize = 35;

0 commit comments

Comments
 (0)