Skip to content

Commit c45a19d

Browse files
bmwillbors-libra
authored andcommitted
meta: more master -> main
Closes: diem#7878
1 parent e4a2862 commit c45a19d

Some content is hidden

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

70 files changed

+165
-165
lines changed

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ repo](https://github.com/diem/developers.diem.com/website/CONTRIBUTING.md).
4949
Changes to the project are proposed through pull requests. The general pull
5050
request workflow is as follows:
5151

52-
1. Fork the repo and create a topic branch off of `master`.
52+
1. Fork the repo and create a topic branch off of `main`.
5353
2. If you have added code that should be tested, add unit tests.
5454
3. If you have changed APIs, update the documentation. Make sure the
5555
documentation builds.
@@ -140,17 +140,17 @@ separate commits on top of your PR unless it logically makes sense to have
140140
separate, distinct commits for those changes. This helps keep the commit
141141
history clean.
142142

143-
If your pull request is out-of-date and needs to be updated because `master`
144-
has advanced, you should rebase your branch on top of the latest master by
143+
If your pull request is out-of-date and needs to be updated because `main`
144+
has advanced, you should rebase your branch on top of the latest main by
145145
doing the following:
146146

147147
```bash
148148
git fetch upstream
149149
git checkout topic
150-
git rebase -i upstream/master
150+
git rebase -i upstream/main
151151
```
152152

153-
You *should not* update your branch by merging the latest master into your
153+
You *should not* update your branch by merging the latest main into your
154154
branch. Merge commits included in PRs tend to make it more difficult for the
155155
reviewer to understand the change being made, especially if the merge wasn't
156156
clean and needed conflicts to be resolved. As such, PRs with merge commits will

consensus/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: consensus
33
title: Consensus
4-
custom_edit_url: https://github.com/diem/diem/edit/master/consensus/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/consensus/README.md
55
---
66

77

crypto/crypto/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: crypto
33
title: Crypto
4-
custom_edit_url: https://github.com/diem/diem/edit/master/crypto/crypto/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/crypto/crypto/README.md
55
---
66

77
The crypto component hosts all the implementations of cryptographic primitives we use in Diem: hashing, signing, and key derivation/generation. The parts of the library using traits.rs contains the crypto API enforcing type safety, verifiable random functions, EdDSA & MultiEdDSA signatures.

developers.diem.com/docs/core/accounts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ChildVASP is a child account of a particular ParentVASP. A Regulated VASP need n
2727

2828
## Creating accounts
2929

30-
On Diem mainnet (at launch), ParentVASP accounts can only be created by the [TreasuryCompliance account](https://github.com/diem/dip/blob/master/dips/dip-2.md#roles). Once a ParentVASP account is created, the Regulated VASP can then create ChildVASP accounts.
30+
On Diem mainnet (at launch), ParentVASP accounts can only be created by the [TreasuryCompliance account](https://github.com/diem/dip/blob/main/dips/dip-2.md#roles). Once a ParentVASP account is created, the Regulated VASP can then create ChildVASP accounts.
3131

3232
In order to create a new account, the creator must specify the address of the new account, its authentication key prefix, and the currencies that the account will initially accept. Learn more about how accounts are created [here](transaction-types.md#account-creation-and-minting).
3333

developers.diem.com/docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ module.exports = objectAssignDeep(universalConfig, {
5353
docs: {
5454
sidebarPath: require.resolve('./sidebars'),
5555
// Please change this to your repo.
56-
editUrl: 'https://github.com/diem/diem/edit/master/developers.diem.com/',
56+
editUrl: 'https://github.com/diem/diem/edit/main/developers.diem.com/',
5757
},
5858
blog: {
5959
showReadingTime: true,
6060
// Please change this to your repo.
6161
editUrl:
62-
'https://github.com/diem/diem/edit/master/developers.diem.com/blog/',
62+
'https://github.com/diem/diem/edit/main/developers.diem.com/blog/',
6363
},
6464
theme: {
6565
customCss: require.resolve('./src/css/custom.css'),

docker/compose/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: docker_compose
33
title: Diem Docker-Compose Configuration
4-
custom_edit_url: https://github.com/diem/diem/edit/master/docker/compose/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/docker/compose/README.md
55
---
66

77
This directory contains the following compose configurations:

documentation/coding_guidelines.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ This file should contain:
8484

8585
* The *conceptual* *documentation* of the component.
8686
* A link to the external API documentation for the component.
87-
* A link to the master license of the project.
88-
* A link to the master contributing guide for the project.
87+
* A link to the main license of the project.
88+
* A link to the main contributing guide for the project.
8989

9090
A template for readmes:
9191

execution/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: executor
33
title: Executor
4-
custom_edit_url: https://github.com/diem/diem/edit/master/executor/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/executor/README.md
55
---
66

77

json-rpc/docs/client_checklist.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ See [doc][5] for above concepts.
102102

103103
# Examples
104104

105-
- [ ] [p2p transfer examples](https://github.com/diem/dip/blob/master/dips/dip-4.md#transaction-examples)
105+
- [ ] [p2p transfer examples](https://github.com/diem/dip/blob/main/dips/dip-4.md#transaction-examples)
106106
- [ ] refund p2p transfer example
107107
- [ ] create childVASP example
108108
- [ ] Intent identifier encoding, decoding example
@@ -113,9 +113,9 @@ See [doc][5] for above concepts.
113113
- [ ] CLI connects to testnet for trying out features.
114114

115115
[1]: https://github.com/diem/diem/blob/main/json-rpc/json-rpc-spec.md "Diem JSON-RPC SPEC"
116-
[2]: https://github.com/diem/dip/blob/master/dips/dip-5.md "DIP-5"
116+
[2]: https://github.com/diem/dip/blob/main/dips/dip-5.md "DIP-5"
117117
[3]: https://github.com/diem/diem/blob/main/language/diem-framework/transaction_scripts/doc/peer_to_peer_with_metadata.md "P2P Transafer"
118118
[4]: https://github.com/diem/diem/tree/main/language/diem-framework/transaction_scripts/doc "Move Stdlib scripts"
119119
[5]: https://github.com/diem/diem/blob/main/client/diem-dev/README.md "Diem Client Dev Doc"
120120
[6]: https://github.com/diem/diem/blob/main/json-rpc/docs/service_testnet_faucet.md "Faucet service"
121-
[7]: https://github.com/diem/dip/blob/master/dips/dip-4.md "Transaction Metadata Specification"
121+
[7]: https://github.com/diem/dip/blob/main/dips/dip-4.md "Transaction Metadata Specification"

language/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: move-language
33
title: Move Language
4-
custom_edit_url: https://github.com/diem/diem/edit/master/language/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/language/README.md
55
---
66

77

language/bytecode-verifier/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: bytecode-verifier
33
title: Bytecode Verifier
4-
custom_edit_url: https://github.com/diem/diem/edit/master/language/bytecode-verifier/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/language/bytecode-verifier/README.md
55
---
66

77

language/compiler/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: ir-to-bytecode
33
title: Move IR Compiler
4-
custom_edit_url: https://github.com/diem/diem/edit/master/language/compiler/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/language/compiler/README.md
55
---
66

77

language/diem-framework/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: diem-framework
33
title: Diem Framework
4-
custom_edit_url: https://github.com/diem/diem/edit/master/language/diem-framework/README.md
4+
custom_edit_url: https://github.com/diem/diem/edit/main/language/diem-framework/README.md
55
---
66

77
## The Diem Framework

language/diem-framework/modules/doc/AccountFreezing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,6 @@ Only (un)freeze functions can change the freezing bits of accounts [[H7]][PERMIS
661661

662662

663663
[//]: # ("File containing references which can be used from documentation")
664-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
665-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
666-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
664+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
665+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
666+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/AccountLimits.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1324,6 +1324,6 @@ Invariant that <code><a href="AccountLimits.md#0x1_AccountLimits_LimitsDefinitio
13241324

13251325

13261326
[//]: # ("File containing references which can be used from documentation")
1327-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
1328-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
1329-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
1327+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
1328+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
1329+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/Authenticator.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,6 @@ Return the threshold for the multisig policy <code>k</code>
335335

336336

337337
[//]: # ("File containing references which can be used from documentation")
338-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
339-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
340-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
338+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
339+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
340+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/BCS.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ Native function which is defined in the prover's prelude.
5757

5858

5959
[//]: # ("File containing references which can be used from documentation")
60-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
61-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
62-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
60+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
61+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
62+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/ChainId.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,6 @@ When Diem is operating, the chain id is always available.
175175

176176

177177
[//]: # ("File containing references which can be used from documentation")
178-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
179-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
180-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
178+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
179+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
180+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/CoreAddresses.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,6 @@ Specifies that a function aborts if the account has not the currency info addres
423423

424424

425425
[//]: # ("File containing references which can be used from documentation")
426-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
427-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
428-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
426+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
427+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
428+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DesignatedDealer.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,6 @@ TierInfo persists
859859

860860

861861
[//]: # ("File containing references which can be used from documentation")
862-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
863-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
864-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
862+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
863+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
864+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/Diem.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4273,6 +4273,6 @@ Returns the Preburn in the preburn queue.
42734273

42744274

42754275
[//]: # ("File containing references which can be used from documentation")
4276-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
4277-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
4278-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
4276+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
4277+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
4278+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemAccount.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4898,6 +4898,6 @@ Used in transaction script to specify properties checked by the prologue.
48984898

48994899

49004900
[//]: # ("File containing references which can be used from documentation")
4901-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
4902-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
4903-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
4901+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
4902+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
4903+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemBlock.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,6 @@ ever after
348348

349349

350350
[//]: # ("File containing references which can be used from documentation")
351-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
352-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
353-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
351+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
352+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
353+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemConfig.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1130,6 +1130,6 @@ If <code><a href="DiemConfig.md#0x1_DiemConfig_ModifyConfigCapability">ModifyCon
11301130

11311131

11321132
[//]: # ("File containing references which can be used from documentation")
1133-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
1134-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
1135-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
1133+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
1134+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
1135+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemSystem.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1387,6 +1387,6 @@ of DiemBFT.
13871387

13881388

13891389
[//]: # ("File containing references which can be used from documentation")
1390-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
1391-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
1392-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
1390+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
1391+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
1392+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemTimestamp.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,6 @@ to never abort.
523523

524524

525525
[//]: # ("File containing references which can be used from documentation")
526-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
527-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
528-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
526+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
527+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
528+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemTransactionPublishingOption.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,6 @@ DiemTransactionPublishingOption config [[H11]][PERMISSION]
548548

549549

550550
[//]: # ("File containing references which can be used from documentation")
551-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
552-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
553-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
551+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
552+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
553+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemVMConfig.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,6 @@ Currently, no one can update DiemVMConfig [[H11]][PERMISSION]
338338

339339

340340
[//]: # ("File containing references which can be used from documentation")
341-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
342-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
343-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
341+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
342+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
343+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DiemVersion.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,6 @@ Version number never decreases
240240

241241

242242
[//]: # ("File containing references which can be used from documentation")
243-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
244-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
245-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
243+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
244+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
245+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/DualAttestation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1549,6 +1549,6 @@ The base url stays constant.
15491549

15501550

15511551
[//]: # ("File containing references which can be used from documentation")
1552-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
1553-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
1554-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
1552+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
1553+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
1554+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/Errors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,6 @@ A function to create an error from from a category and a reason.
549549

550550

551551
[//]: # ("File containing references which can be used from documentation")
552-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
553-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
554-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
552+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
553+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
554+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/Event.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,6 @@ pragma. They are implemented in the prover's prelude.
301301

302302

303303
[//]: # ("File containing references which can be used from documentation")
304-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
305-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
306-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
304+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
305+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
306+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/FixedPoint32.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,6 @@ Returns true if the ratio is zero.
599599

600600

601601
[//]: # ("File containing references which can be used from documentation")
602-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
603-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
604-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
602+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
603+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
604+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/Genesis.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,6 @@ Assume that this is called in genesis state (no timestamp).
149149

150150

151151
[//]: # ("File containing references which can be used from documentation")
152-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
153-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
154-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
152+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
153+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
154+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

language/diem-framework/modules/doc/Hash.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ as in the Move prover's prelude.
6363

6464

6565
[//]: # ("File containing references which can be used from documentation")
66-
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/master/dips/dip-2.md
67-
[ROLE]: https://github.com/diem/dip/blob/master/dips/dip-2.md#roles
68-
[PERMISSION]: https://github.com/diem/dip/blob/master/dips/dip-2.md#permissions
66+
[ACCESS_CONTROL]: https://github.com/diem/dip/blob/main/dips/dip-2.md
67+
[ROLE]: https://github.com/diem/dip/blob/main/dips/dip-2.md#roles
68+
[PERMISSION]: https://github.com/diem/dip/blob/main/dips/dip-2.md#permissions

0 commit comments

Comments
 (0)