Skip to content

Commit

Permalink
Match Rubinius style guide for rubinius operations
Browse files Browse the repository at this point in the history
  • Loading branch information
dbussink committed Mar 26, 2013
1 parent f943cea commit bb54df2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/rubinius/18/pack_code.rl
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ namespace rubinius {
}
}

if (count & 7) {
if(count & 7) {
byte <<= 7 - (count & 7);
str.push_back(byte & 0xff);
}
Expand Down
2 changes: 1 addition & 1 deletion actions/rubinius/19/pack_code.rl
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ namespace rubinius {
}
}

if (count & 7) {
if(count & 7) {
byte <<= 7 - (count & 7);
str.push_back(byte & 0xff);
}
Expand Down

0 comments on commit bb54df2

Please sign in to comment.