From 716961188911132a30cd5e7684545f13ae705753 Mon Sep 17 00:00:00 2001 From: Patrick Gray Date: Wed, 2 Jun 2021 13:12:05 -0400 Subject: [PATCH] fix: typo and page title --- src/pages/write-smart-contracts/counter-tutorial.md | 2 +- src/pages/write-smart-contracts/testing-contracts.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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