diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-09 22:36:28 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-09 22:36:28 +0200 |
commit | b1f61657b5d042979578b6573aa67365dc551146 (patch) | |
tree | bb4add2943cc066467f5ad54b0927a4aefa1b0f3 | |
parent | e3f0f48ba912f8afc7c9ffebb6ec4d6692231ce6 (diff) | |
download | refcat-b1f61657b5d042979578b6573aa67365dc551146.tar.gz refcat-b1f61657b5d042979578b6573aa67365dc551146.zip |
cleanup comment
-rw-r--r-- | skate/url.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skate/url.go b/skate/url.go index 17c8ff8..cb14754 100644 --- a/skate/url.go +++ b/skate/url.go @@ -38,7 +38,7 @@ func SanitizeURL(s string) string { } else if len(indices) > 1 { sort.Ints(indices) // http://ailab.ist.psu.edu/bcpred/SVMTriP:http://sysbio.unl.edu/SVMTriP/prediction.phpBcell - s = s[indices[0]:indices[1]] // only use the first + s = s[indices[0]:indices[1]] s = strings.TrimRight(s, ":") s = strings.TrimRight(s, ";") } |