From f4107d0d9c2ca274eaa484de821ca26b5d35dceb Mon Sep 17 00:00:00 2001 From: Niels Date: Sun, 17 Apr 2016 23:36:37 +0200 Subject: [PATCH] updated documentation --- doc/examples/operator__equal.output | 2 +- doc/examples/operator__equal.test | 4 ++++ doc/examples/operator__notequal.output | 2 +- doc/examples/operator__notequal.test | 4 ++++ 4 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 doc/examples/operator__equal.test create mode 100644 doc/examples/operator__notequal.test diff --git a/doc/examples/operator__equal.output b/doc/examples/operator__equal.output index 780673556..e9dfd7551 100644 --- a/doc/examples/operator__equal.output +++ b/doc/examples/operator__equal.output @@ -1,4 +1,4 @@ [1,2,3] == [1,2,4] false {"A":"a","B":"b"} == {"A":"a","B":"b"} true -17 == 17.0 true +17 == 17 true "foo" == "bar" false diff --git a/doc/examples/operator__equal.test b/doc/examples/operator__equal.test new file mode 100644 index 000000000..e9dfd7551 --- /dev/null +++ b/doc/examples/operator__equal.test @@ -0,0 +1,4 @@ +[1,2,3] == [1,2,4] false +{"A":"a","B":"b"} == {"A":"a","B":"b"} true +17 == 17 true +"foo" == "bar" false diff --git a/doc/examples/operator__notequal.output b/doc/examples/operator__notequal.output index 9eba626e3..ddd838b4a 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 +17 == 17 false "foo" == "bar" true diff --git a/doc/examples/operator__notequal.test b/doc/examples/operator__notequal.test new file mode 100644 index 000000000..ddd838b4a --- /dev/null +++ b/doc/examples/operator__notequal.test @@ -0,0 +1,4 @@ +[1,2,3] == [1,2,4] true +{"A":"a","B":"b"} == {"A":"a","B":"b"} false +17 == 17 false +"foo" == "bar" true