diff options
author | Erik Osheim <d_m@plastic-idolatry.com> | 2015-03-15 03:12:03 -0400 |
---|---|---|
committer | Erik Osheim <d_m@plastic-idolatry.com> | 2015-03-15 03:12:03 -0400 |
commit | 2be8d2cd5e6b29b75aa93108bf738dd2d3b0bb21 (patch) | |
tree | 28bd61ed9e574ab32f7097f5833f567fa4f946cf /src/pronouns/util.clj | |
parent | 573294ba752823d2fb6a708acf2533a6e14752c9 (diff) |
Fix style issues brought up in review.
Diffstat (limited to 'src/pronouns/util.clj')
-rw-r--r-- | src/pronouns/util.clj | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pronouns/util.clj b/src/pronouns/util.clj index 1d4c09a..8327568 100644 --- a/src/pronouns/util.clj +++ b/src/pronouns/util.clj @@ -15,10 +15,10 @@ [query-key tabfile] (table-lookup query-key (slurp-tabfile tabfile))) -; given a row and its lexically-closest neighbors, -; determine the smallest abbreviation which is still -; distinct. (defn disambiguate + "given a row and its lexically-closest neighbors, + determine the smallest abbreviation which is still + distinct." [prev row next] (loop [n 1] (let [row-n (take n row)] @@ -28,10 +28,10 @@ (= row-n (take n next)) (recur (+ n 1)) :else row-n)))) -; given a list of pronoun rows, return a list of -; pairs, where the first item is the abbreviation -; and the second is the original pronoun row. (defn abbreviate + "given a list of pronoun rows, return a list of + pairs, where the first item is the abbreviation + and the second is the original pronoun row." [sorted-table] (loop [acc nil prev nil |