Skip to content

Commit 9094998

Browse files
committed
rpn-calculator: replace tabs with spaces
1 parent fdf0882 commit 9094998

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

exercises/concept/rpn-calculator/.docs/instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ pub enum CalculatorInput {
106106

107107
pub fn evaluate(inputs: &[CalculatorInput]) -> Option<i32> {
108108
unimplemented!(
109-
"Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression",
110-
inputs,
111-
);
109+
"Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression",
110+
inputs,
111+
);
112112
}
113113
```

exercises/concept/rpn-calculator/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub enum CalculatorInput {
99

1010
pub fn evaluate(inputs: &[CalculatorInput]) -> Option<i32> {
1111
unimplemented!(
12-
"Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression",
13-
inputs,
14-
);
12+
"Given the inputs: {:?}, evaluate them as though they were a Reverse Polish notation expression",
13+
inputs,
14+
);
1515
}

0 commit comments

Comments
 (0)