diff --git a/src/README.md b/src/README.md
index 1373a62..47bb993 100644
--- a/src/README.md
+++ b/src/README.md
@@ -4,7 +4,7 @@ Experimental folding schemes library implemented in a joint effort by [0xPARC](h
-Sonobe is a modular library to fold circuit instances in an Incremental Verifiable computation (IVC) style. It features multiple folding schemes and decider setups, allowing users to pick the scheme which best fit their needs. Sonobe also provides a way for developers to generate an EVM-verifiable zkSNARK proof of correct folding.
+Sonobe is a modular library to fold circuit instances in an Incremental Verifiable computation (IVC) style. It features multiple folding schemes and decider setups, allowing users to pick the scheme which best fit their needs.
Sonobe is conceived as an exploratory effort with the aim to push forward the practical side of folding schemes and advancing towards onchain (EVM) verification.
@@ -12,7 +12,7 @@ Sonobe is conceived as an exploratory effort with the aim to push forward the pr
> **Warning**: experimental code, do not use in production.
-> The code has not been audited. Several optimizations are also pending. Our focus so far has been on implementing the Nova + CycleFold proving system and achieving onchain (EVM) verification.
+> The code has not been audited. Several optimizations are also pending. Our focus so far has been on implementing the Nova and CycleFold schemes and achieving onchain (EVM) verification.
## Schemes implemented
diff --git a/src/folding-and-sonobe.md b/src/folding-and-sonobe.md
index 801335b..7ce6286 100644
--- a/src/folding-and-sonobe.md
+++ b/src/folding-and-sonobe.md
@@ -21,17 +21,17 @@ The next 3 videos provide a good overview of folding schemes:
## Sonobe overview
-Sonobe is a modular folding schemes library. It allows developers to fold R1CS instances in an Incremental Verifiable computation (IVC) style. It also provides tools required to generate a zkSNARK out of an IVC proof. Developers can configure sonobe so that those proofs can also be verified on Ethereum's EVM.
+Sonobe is a folding schemes modular library to fold arithmetic circuit instances in an incremental verifiable computation (IVC) style. It also provides the tools required to generate a zkSNARK proof out of an IVC proof and to verify it on Ethereum's EVM.
The development flow using Sonobe looks like:
-1. Define a circuit to be folded. This is done using a frontend such as [`circom`](https://github.com/iden3/circom) or [arkworks](https://github.com/arkworks-rs/r1cs-std).
-2. Set which folding scheme to be used (eg. Nova).
-3. Set a final decider to generate the final proof (eg. Spartan over Pasta curves).
-4. Generate the decider verifier.
+1. Define a circuit to be folded
+2. Set which folding scheme to be used (eg. Nova with CycleFold)
+3. Set a final decider to generate the final proof (eg. Spartan over Pasta curves)
+4. Generate the the decider verifier
-
+