From cf40c6e1317b0197473336c8342440c490b66e99 Mon Sep 17 00:00:00 2001 From: Eugene Petkevich <nasedil@users.noreply.github.com> Date: Tue, 17 Apr 2018 16:34:29 +0300 Subject: [PATCH] Fix closing comment in Getting Started (#1530) A small fix -- the closing slash was absent in a comment. --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index e74f03bca..f7ed08466 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -30,7 +30,7 @@ To initialize Mirador, it needs to be attached to an existing HTML **div** throu $(function() { Mirador({ id: "viewer", - data: [/* Manifests and collections here *] + data: [/* Manifests and collections here */] }); }); </script> -- GitLab