1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 09:21:35 +03:00

Document the ByIndex case a bit more.

This commit is contained in:
Rob Rix 2015-10-05 14:54:03 -04:00
parent b7ebabd529
commit 9e2b6bd3b4

View File

@ -13,7 +13,8 @@ public enum Algorithm<Recur, A> {
/// Represents a diff to be performed on a collection of terms identified by keys.
case ByKey([String:Term], [String:Term], [String:Diff] -> Recur)
// fixme: SES 😰
/// Represents a diff to be performed over an array of terms by index.
case ByIndex([Term], [Term], [Diff] -> Recur)