Commit d37fa86ff6fb795eab09ab491826ce3ec022587b
1 parent
b4bdb16b
.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/Menu.java
... | ... | @@ -135,7 +135,7 @@ public class Menu { |
135 | 135 | column = in.next(); |
136 | 136 | System.out.println("\n Entrez la ligne de la case"); |
137 | 137 | line = in.nextInt(); |
138 | - System.out.println("\n Entrez la formule (Ex: (A1+A2) ou SOMME(A1,A2)"); | |
138 | + System.out.println("\n Entrez la formule (Ex: A1+A2 ou SOMME(A1,A2)"); | |
139 | 139 | formula = in.next(); |
140 | 140 | grid.createCell(column, line, generateFormulaWithString(formula, grid)); |
141 | 141 | } catch (InvalidIntervalException exception) { |
... | ... | @@ -282,4 +282,4 @@ public class Menu { |
282 | 282 | break; |
283 | 283 | } |
284 | 284 | } |
285 | 285 | -} |
286 | +} | |
286 | 287 | \ No newline at end of file | ... | ... |