]> git.sesse.net Git - stockfish/blobdiff - src/nnue/nnue_feature_transformer.h
Small cleanups
[stockfish] / src / nnue / nnue_feature_transformer.h
index 8087ea55dd01c59baaabbebdad2acc5b1557dd66..a1888c7a36520c108a38f2517c7fa0947351f3b9 100644 (file)
@@ -363,7 +363,7 @@ namespace Stockfish::Eval::NNUE {
     // NOTE: The parameter states_to_update is an array of position states, ending with nullptr.
     //       All states must be sequential, that is states_to_update[i] must either be reachable
     //       by repeatedly applying ->previous from states_to_update[i+1] or states_to_update[i] == nullptr.
-    //       computed_st must be reachable by repeatadly applying ->previous on states_to_update[0], if not nullptr.
+    //       computed_st must be reachable by repeatedly applying ->previous on states_to_update[0], if not nullptr.
     template<Color Perspective, size_t N>
     void update_accumulator_incremental(const Position& pos, StateInfo* computed_st, StateInfo* states_to_update[N]) const {
       static_assert(N > 0);