diff --git a/src/pages/write-smart-contracts/counter-tutorial.md b/src/pages/write-smart-contracts/counter-tutorial.md index 52beb5c6..565ae8c1 100644 --- a/src/pages/write-smart-contracts/counter-tutorial.md +++ b/src/pages/write-smart-contracts/counter-tutorial.md @@ -192,7 +192,7 @@ counter in the console: (contract-call? .counter increment) ``` -The console should return (ok 1). Try calling the `decrement` function to decrement the counter back to 0. +The console should return `(ok 1)`. Try calling the `decrement` function to decrement the counter back to 0. ```clarity (contract-call? .counter decrement) diff --git a/src/pages/write-smart-contracts/testing-contracts.md b/src/pages/write-smart-contracts/testing-contracts.md index c75b87d7..687ba2e5 100644 --- a/src/pages/write-smart-contracts/testing-contracts.md +++ b/src/pages/write-smart-contracts/testing-contracts.md @@ -1,5 +1,5 @@ --- -title: Testing Clarity code +title: Testing Clarity code with JS and Mocha description: Learn to Test Clarity Contract Code with JavaScript and Mocha. experience: advanced duration: 15 minutes