From f697fec5221e5b15ae2592cc5974009cbac1f841 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 8 Jul 2017 22:16:45 +0200 Subject: [PATCH] :memo: fixed documentation There was an issue in the documentation example before. Unfortunately, I did not recreate the example outputs. --- doc/examples/operator__notequal.link | 2 +- doc/examples/operator__notequal.output | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/examples/operator__notequal.link b/doc/examples/operator__notequal.link index fa7acee8..bf369092 100644 --- a/doc/examples/operator__notequal.link +++ b/doc/examples/operator__notequal.link @@ -1 +1 @@ -online \ No newline at end of file +online \ No newline at end of file diff --git a/doc/examples/operator__notequal.output b/doc/examples/operator__notequal.output index 9eba626e..6cbc0e8e 100644 --- a/doc/examples/operator__notequal.output +++ b/doc/examples/operator__notequal.output @@ -1,4 +1,4 @@ -[1,2,3] == [1,2,4] true -{"A":"a","B":"b"} == {"A":"a","B":"b"} false -17 == 17.0 false -"foo" == "bar" true +[1,2,3] != [1,2,4] true +{"A":"a","B":"b"} != {"A":"a","B":"b"} false +17 != 17.0 false +"foo" != "bar" true