From 26de8fa322eec2463eeac832ecd4ebed5941be1a Mon Sep 17 00:00:00 2001 From: Ziyang Hu Date: Tue, 31 Jan 2023 16:38:58 +0800 Subject: [PATCH] fix typo and improve example As discussed in https://github.com/cozodb/cozo/issues/37 --- cozo-lib-wasm/wasm-react-demo/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cozo-lib-wasm/wasm-react-demo/src/App.js b/cozo-lib-wasm/wasm-react-demo/src/App.js index cd00ff2b..beac48e8 100644 --- a/cozo-lib-wasm/wasm-react-demo/src/App.js +++ b/cozo-lib-wasm/wasm-react-demo/src/App.js @@ -238,7 +238,7 @@ great_grandparent[A, D] := parent[A, B], parent[B, C], parent[C, D] # Any position in the relation may be queried # ?[who] := great_grandparent[who, 'joseph'] # => 'abraham'`) - }}>Here is a classical example recursive example. + }}>Here is a classical recursive example.

The tutorial contains many more examples.