Skip to content

Commit 5560239

Browse files
committed
Replace links to readthedocs.io with ones using the new domain
1 parent eb77ed0 commit 5560239

27 files changed

+39
-39
lines changed

.circleci/osx_install_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# The documentation for solidity is hosted at:
66
#
7-
# https://solidity.readthedocs.org
7+
# https://docs.soliditylang.org
88
#
99
# ------------------------------------------------------------------------------
1010
# This file is part of solidity.

.circleci/soltest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# The documentation for solidity is hosted at:
66
#
7-
# https://solidity.readthedocs.org
7+
# https://docs.soliditylang.org
88
#
99
# ------------------------------------------------------------------------------
1010
# Configuration Environment Variables:

.circleci/soltest_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# The documentation for solidity is hosted at:
66
#
7-
# https://solidity.readthedocs.org
7+
# https://docs.soliditylang.org
88
#
99
# ------------------------------------------------------------------------------
1010
# This file is part of solidity.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Contribution Guidelines
22

3-
Please see our contribution guidelines in [the Solidity documentation](https://solidity.readthedocs.io/en/latest/contributing.html).
3+
Please see our contribution guidelines in [the Solidity documentation](https://docs.soliditylang.org/en/latest/contributing.html).
44

55
Thank you for your help!

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ number [to indicate this fast pace of change](https://semver.org/#spec-item-4).
2929
## Build and Install
3030

3131
Instructions about how to build and install the Solidity compiler can be
32-
found in the [Solidity documentation](https://solidity.readthedocs.io/en/latest/installing-solidity.html#building-from-source).
32+
found in the [Solidity documentation](https://docs.soliditylang.org/en/latest/installing-solidity.html#building-from-source).
3333

3434

3535
## Example
@@ -49,20 +49,20 @@ contract HelloWorld {
4949
To get started with Solidity, you can use [Remix](https://remix.ethereum.org/), which is a
5050
browser-based IDE. Here are some example contracts:
5151

52-
1. [Voting](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#voting)
53-
2. [Blind Auction](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#blind-auction)
54-
3. [Safe remote purchase](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#safe-remote-purchase)
55-
4. [Micropayment Channel](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#micropayment-channel)
52+
1. [Voting](https://docs.soliditylang.org/en/latest/solidity-by-example.html#voting)
53+
2. [Blind Auction](https://docs.soliditylang.org/en/latest/solidity-by-example.html#blind-auction)
54+
3. [Safe remote purchase](https://docs.soliditylang.org/en/latest/solidity-by-example.html#safe-remote-purchase)
55+
4. [Micropayment Channel](https://docs.soliditylang.org/en/latest/solidity-by-example.html#micropayment-channel)
5656

5757
## Documentation
5858

59-
The Solidity documentation is hosted at [Read the docs](https://solidity.readthedocs.io).
59+
The Solidity documentation is hosted at [Read the docs](https://docs.soliditylang.org).
6060

6161
## Development
6262

6363
Solidity is still under development. Contributions are always welcome!
6464
Please follow the
65-
[Developers Guide](https://solidity.readthedocs.io/en/latest/contributing.html)
65+
[Developers Guide](https://docs.soliditylang.org/en/latest/contributing.html)
6666
if you want to help.
6767

6868
You can find our current feature and bug priorities for forthcoming

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ The Solidity team maintains the following JSON-formatted lists of patched securi
4848

4949
[1]: https://bounty.ethereum.org/
5050
[2]: https://bounty.ethereum.org/#rules
51-
[3]: https://solidity.readthedocs.io/en/develop/bugs.html
51+
[3]: https://docs.soliditylang.org/en/develop/bugs.html
5252
[4]: https://github.com/ethereum/solidity/blob/develop/docs/bugs_by_version.json

docs/using-the-compiler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ Output Description
441441
// If the language used has no contract names, this field should equal to an empty string.
442442
"ContractName": {
443443
// The Ethereum Contract ABI. If empty, it is represented as an empty array.
444-
// See https://solidity.readthedocs.io/en/develop/abi-spec.html
444+
// See https://docs.soliditylang.org/en/develop/abi-spec.html
445445
"abi": [],
446446
// See the Metadata Output documentation (serialised JSON string)
447447
"metadata": "{...}",

libsolidity/analysis/TypeChecker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3255,7 +3255,7 @@ void TypeChecker::endVisit(Literal const& _literal)
32553255
_literal.location(),
32563256
msg +
32573257
" If this is not used as an address, please prepend '00'. " +
3258-
"For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals"
3258+
"For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals"
32593259
);
32603260
}
32613261

libsolidity/interface/ABI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
// SPDX-License-Identifier: GPL-3.0
1818
/**
19-
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html)
19+
* Utilities to handle the Contract ABI (https://docs.soliditylang.org/en/develop/abi-spec.html)
2020
*/
2121

2222
#include <libsolidity/interface/ABI.h>

libsolidity/interface/ABI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
// SPDX-License-Identifier: GPL-3.0
1818
/**
19-
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html)
19+
* Utilities to handle the Contract ABI (https://docs.soliditylang.org/en/develop/abi-spec.html)
2020
*/
2121

2222
#pragma once

0 commit comments

Comments
 (0)