Skip to content

Commit

Permalink
Merge #349
Browse files Browse the repository at this point in the history
349: chmod -x *.rs r=Dylan-DPC a=ignatenkobrain

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>

**I'm submitting a(n)** bug fix

# Description
Remove executable bit from `*.rs` files.

# Motivation
In Fedora we generate dependencies based on shebang and `#![…]` looks like that so the generation fails. Also there is basically no point in having them executable.

# Tests
No need.

# Related Issue(s)
None.

Co-authored-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Co-authored-by: dylan_DPC <dylan.dpc@gmail.com>
  • Loading branch information
3 people committed Nov 21, 2018
2 parents cefac75 + c4e9ccd commit f2e2463
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Empty file modified benches/format_str.rs
100755 → 100644
Empty file.
Empty file modified benches/serde_support.rs
100755 → 100644
Empty file.
17 changes: 8 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -650,15 +650,14 @@ impl Uuid {
/// * The second field value represents the second group of (four) hex
/// digits, taken as a big-endian `u16` value. For V1 UUIDs, this field
/// represents the middle 16 bits of the timestamp.
/// * The third field value represents the third group of (four) hex
/// digits, taken as a big-endian `u16` value. The 4 most significant
/// bits give the UUID version, and for V1 UUIDs, the last 12 bits
/// represent the high 12 bits of the timestamp.
/// * The last field value represents the last two groups of four and
/// twelve hex digits, taken in order. The first 1-3 bits of this
/// indicate the UUID variant, and for V1 UUIDs, the next 13-15 bits
/// indicate the clock sequence and the last 48 bits indicate the node
/// ID.
/// * The third field value represents the third group of (four) hex digits,
/// taken as a big-endian `u16` value. The 4 most significant bits give
/// the UUID version, and for V1 UUIDs, the last 12 bits represent the
/// high 12 bits of the timestamp.
/// * The last field value represents the last two groups of four and twelve
/// hex digits, taken in order. The first 1-3 bits of this indicate the
/// UUID variant, and for V1 UUIDs, the next 13-15 bits indicate the clock
/// sequence and the last 48 bits indicate the node ID.
///
/// # Examples
///
Expand Down

0 comments on commit f2e2463

Please sign in to comment.