File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,10 @@ pub struct BitMoveFromStrError;
211211
212212impl fmt:: Display for BitMoveFromStrError {
213213 fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
214- write ! ( f, "invalid move string, expected format like 'e2e4' or 'a7a8q'" )
214+ write ! (
215+ f,
216+ "invalid move string, expected format like 'e2e4' or 'a7a8q'"
217+ )
215218 }
216219}
217220
Original file line number Diff line number Diff line change @@ -430,6 +430,9 @@ pub struct SQFromStrError;
430430
431431impl fmt:: Display for SQFromStrError {
432432 fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
433- write ! ( f, "invalid square string, expected format like 'a1' through 'h8'" )
433+ write ! (
434+ f,
435+ "invalid square string, expected format like 'a1' through 'h8'"
436+ )
434437 }
435438}
You can’t perform that action at this time.
0 commit comments