From 6db961d256a58009d3b3ac921bf9fa76ca5da5b1 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sun, 30 Sep 2018 00:08:09 -0700 Subject: [PATCH] Correct comment --- src/tictactoe_dashboard_program.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tictactoe_dashboard_program.rs b/src/tictactoe_dashboard_program.rs index 7d32a75f29..cd08158643 100644 --- a/src/tictactoe_dashboard_program.rs +++ b/src/tictactoe_dashboard_program.rs @@ -49,7 +49,7 @@ impl TicTacToeDashboardProgram { } State::XWon | State::OWon | State::Draw => { if !self.completed.iter().any(|pubkey| pubkey == game_pubkey) { - // TODO: Once the PoH high is exposed to programs, it could be used to ensure + // TODO: Once the PoH height is exposed to programs, it could be used to ensure // that old games are not being re-added and causing |total| to increment // incorrectly. self.total += 1;