Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: do not accept grammar prs #575

Merged
merged 2 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ commit signing. This option allows us to make small changes to your PR to bring
it in line with these standards. It helps us get your PR in faster, and with
less work from you.

### Contributions Related to Spelling and Grammar

At this time, we will not be accepting contributions that only fix spelling or grammatical errors in documentation, code or
elsewhere.

### Cargo Commands

This section lists some commonly needed commands.
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/src/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl<const BITS: usize, const LIMBS: usize> ToSql for Signed<BITS, LIMBS> {
// Binary strings
Type::BYTEA => out.put_slice(&self.0.to_be_bytes_vec()),
Type::BIT | Type::VARBIT => {
// Bit in little-endian so the the first bit is the least significant.
// Bit in little-endian so the first bit is the least significant.
// Length must be at least one bit.
if BITS == 0 {
if *ty == Type::BIT {
Expand Down
2 changes: 1 addition & 1 deletion crates/syn-solidity/tests/contracts/PrbMath.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ uint256 constant UNIT = 1e18;
/// @dev The unit number inverted mod 2^256.
uint256 constant UNIT_INVERSE = 78156646155174841979727994598816262306175212592076161876661_508869554232690281;

/// @dev The the largest power of two that divides the decimal value of `UNIT`. The logarithm of this value is the least significant
/// @dev The largest power of two that divides the decimal value of `UNIT`. The logarithm of this value is the least significant
/// bit in the binary representation of `UNIT`.
uint256 constant UNIT_LPOTD = 262144;

Expand Down