From 57921e3f524db668ab1f342353b45ef7b538747c Mon Sep 17 00:00:00 2001 From: Brian Mearns Date: Wed, 2 Oct 2019 22:31:41 -0400 Subject: [PATCH] #530 Add Hex example to index.html --- dist/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.html b/dist/index.html index 027b17213..8c38bf514 100644 --- a/dist/index.html +++ b/dist/index.html @@ -291,7 +291,7 @@ graph TB
graph TD A[Christmas] -->|Get money| B(Go shopping) -B --> C{Let me think} +B --> C{{Let me think...
Do I want something for work,
something to spend every free second with,
or something to get around?}} C -->|One| D[Laptop] C -->|Two| E[iPhone] C -->|Three| F[Car] @@ -443,7 +443,7 @@ Class08 <--> C2: Cool label const testLineEndings = (test, input) => { try { mermaid.render(test, input, () => {}); - } catch (err) { + } catch (err) { console.error("Error in %s:\n\n%s", test, err); } };