From 854048f1e0fe9964f255d8490e9b3fe87a80e37b Mon Sep 17 00:00:00 2001 From: Alexander Hoen Date: Mon, 18 Sep 2023 15:34:07 +0200 Subject: [PATCH] fix typo in comment --- src/scip/scip_tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scip/scip_tree.c b/src/scip/scip_tree.c index fa1d937061..022b6dc31e 100644 --- a/src/scip/scip_tree.c +++ b/src/scip/scip_tree.c @@ -555,7 +555,7 @@ SCIP_RETCODE SCIPprintNodeRootPath( SCIPnodeGetAncestorBranchingPath(node, branchvars, branchbounds, boundtypes, &nbranchvars, branchvarssize, nodeswitches, &nnodes, nodeswitchsize ); - /* if the arrays were to small, we have to reallocate them and recall SCIPnodeGetAncestorBranchingPath */ + /* if the arrays were too small, we have to reallocate them and recall SCIPnodeGetAncestorBranchingPath */ if( nbranchvars > branchvarssize || nnodes > nodeswitchsize ) { branchvarssize = nbranchvars;