From 0bf739058957acfde46df23c0ea35e05eaa1ac8d Mon Sep 17 00:00:00 2001 From: Brady James Garvin <bgarvin@cse.unl.edu> Date: Fri, 6 Dec 2019 12:54:41 -0600 Subject: [PATCH] Corrected another minor typo in a code comment. --- js/leafy_tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/leafy_tree.js b/js/leafy_tree.js index 2d0840b..0571e52 100644 --- a/js/leafy_tree.js +++ b/js/leafy_tree.js @@ -11,7 +11,7 @@ export class Monoid { } } -// Likewise, we not only give an ordered monoid a way to compare its summaries (combineSummaries), we also include a function (summarizePosition) to convert +// Likewise, we not only give an ordered monoid a way to compare its summaries (compareSummaries), we also include a function (summarizePosition) to convert // from a position type to the summary type. That way, leafy trees can have one type for positions and a different type for summaries. (Yet again, if // different types are not required, then summarizePosition can just be set to the identity function.) // -- GitLab