Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cairoIover committed Jan 4, 2025
1 parent 994160e commit 17331b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion corelib/src/ops.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use range::RangeInclusiveOp;
// `RangeOp` is used internally by the compiler.
#[allow(unused_imports)]
use range::RangeOp;
pub use range::{Range, RangeIterator, RangeTrait, RangeInclusive, RangeInclusiveIterator};
pub use range::{Range, RangeInclusive, RangeInclusiveIterator, RangeIterator, RangeTrait};

mod function;
pub use function::{Fn, FnOnce};
2 changes: 1 addition & 1 deletion corelib/src/test/range_test.cairo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use core::ops::{RangeTrait};
use core::ops::RangeTrait;

#[test]
fn test_range_is_empty() {
Expand Down
2 changes: 1 addition & 1 deletion crates/cairo-lang-parser/src/operators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub fn get_post_operator_precedence(kind: SyntaxKind) -> Option<usize> {
| SyntaxKind::TerminalGE => Some(7),
SyntaxKind::TerminalAndAnd => Some(8),
SyntaxKind::TerminalOrOr => Some(9),
SyntaxKind::TerminalDotDot | SyntaxKind::TerminalDotDotEq => Some(10), // unsure about this?
SyntaxKind::TerminalDotDot | SyntaxKind::TerminalDotDotEq => Some(10),
SyntaxKind::TerminalEq
| SyntaxKind::TerminalPlusEq
| SyntaxKind::TerminalMinusEq
Expand Down

0 comments on commit 17331b6

Please sign in to comment.