equal
deleted
inserted
replaced
117 |
117 |
118 We use ``rustfmt`` to keep the code formatted at all times. For now, we are |
118 We use ``rustfmt`` to keep the code formatted at all times. For now, we are |
119 using the nightly version because it has been stable enough and provides |
119 using the nightly version because it has been stable enough and provides |
120 comment folding. |
120 comment folding. |
121 |
121 |
122 To format the entire Rust workspace:: |
122 Our CI enforces that the code does not need reformatting. Before |
|
123 submitting your changes, please format the entire Rust workspace by running:: |
|
124 |
123 |
125 |
124 $ cargo +nightly fmt |
126 $ cargo +nightly fmt |
125 |
127 |
126 This requires you to have the nightly toolchain installed. |
128 This requires you to have the nightly toolchain installed. |
127 |
129 |