diff options
-rw-r--r-- | web/babelpkglist.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web/babelpkglist.nim b/web/babelpkglist.nim index 8745c9f99..8de6047ef 100644 --- a/web/babelpkglist.nim +++ b/web/babelpkglist.nim @@ -38,8 +38,7 @@ proc processContent(content: string) = else: pkg["url"].str let desc = pkg["description"].str - # Review array index access when #1291 is solved. - dot = if desc.high > 0 and desc[<desc.high] in endings: "" else: "." + dot = if desc.high > 0 and desc[desc.high] in endings: "" else: "." listItem = li(a(href=pkgWeb, pkg["name"].str), " ", desc & dot) if pkg["url"].str.startsWith("git://github.com/nimrod-code") or "official" in pkg["tags"].elems: |