diff --git a/README.md b/README.md index 974a0be6075..803d2bef9e6 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,13 @@ Language for building DeFi apps on Radix. Documentation: https://docs-babylon.radixdlt.com/main/scrypto/introduction.html +## License + +The code in this repository is released under the [Radix License, Version 1.0](LICENSE) and includes modified third party work which is reproduced here pursuant to the Apache 2.0 licensing regime. +Where third party software has been used this is identified together with the appropriate open-source licence. + +Binaries, including libraries, CLIs and docker images, are licensed under the [Radix Software EULA](http://www.radixdlt.com/terms/genericEULA). + ## Installation 1. Install Rust - this requires Rust 1.70+ (if rust is already installed, upgrade with `rustup update`) @@ -136,13 +143,3 @@ docker run -v :/src radixdlt/simulator ## Contribute To learn more about how to contribute to this project, read the [Contributing Guide](./CONTRIBUTING.md). - -## License - -This software/code is licensed and used pursuant to the Radix License, Version 1.0 and includes -modified third party work which is reproduced here pursuant to the Apache 2.0 licensing regime. -Where third party software has been used this is identified together with the appropriate -open-source licence. - -A copy of the Radix License, Version 1.0 may be found in the `LICENSE` file in the root directory of -this repository. diff --git a/radix-engine-macros/src/decimal.rs b/radix-engine-macros/src/decimal.rs index bf83643e69c..5c511981616 100644 --- a/radix-engine-macros/src/decimal.rs +++ b/radix-engine-macros/src/decimal.rs @@ -127,7 +127,7 @@ fn precise_decimal_error_reason(error: ParsePreciseDecimalError) -> &'static str match error { ParsePreciseDecimalError::InvalidDigit => "There is an invalid character", ParsePreciseDecimalError::Overflow => { - "The number being too large to fit in a precise decimal" + "The number is too large to fit in a precise decimal." } ParsePreciseDecimalError::EmptyIntegralPart => { "If there is a decimal point, the number must include at least one digit before it. Use a 0 if necessary."