diff --git a/lib/src/widgets/board.dart b/lib/src/widgets/board.dart index 64734c5..840a4e8 100644 --- a/lib/src/widgets/board.dart +++ b/lib/src/widgets/board.dart @@ -648,7 +648,7 @@ class _BoardState extends State { // target square if (square != null && square != selected) { final couldMove = _tryMoveOrPremoveTo(square, drop: true); - // if the prevemove was not possible, cancel the current premove + // if the premove was not possible, cancel the current premove if (!couldMove && widget.state.premove != null) { widget.onPremove?.call(null); }