Skip to content

Commit cf3bd94

Browse files
committed
formatting fixes
1 parent 9263a80 commit cf3bd94

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

content/_recipes/create-sha256-hash-clarity.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ that can be created in javascript as well.
1313
const hash = createSha256Hash("deadbeef"); //b462657d5547c972e675cfd7ee2e313eb033e6aa74f668ca7bd1d79a056c9fea
1414
```
1515

16-
```Clarity
16+
```clarity
1717
;; vote
1818
(define-map votes principal (buff 32))
1919
(map-set votes tx-sender 0xb462657d5547c972e675cfd7ee2e313eb033e6aa74f668ca7bd1d79a056c9fea)
@@ -30,4 +30,4 @@ const hash = createSha256Hash("deadbeef"); //b462657d5547c972e675cfd7ee2e313eb03
3030

3131
**Recipes**
3232

33-
- [create-sha256-hash-stacks-js](/cookbook/create-sha256-hash-stacks-js)
33+
- [Create a SHA-256 hash using Stacks.js](/cookbook/create-sha256-hash-stacks-js)

content/_recipes/create-sha256-hash-stacks-js.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Create a SHA-256 hash using stacks.js
1+
# Create a SHA-256 hash using Stacks.js
22

33
A scripts in javascript that creates a sha256 hash
44
that can be created in Clarity as well.
@@ -13,7 +13,7 @@ that can be created in Clarity as well.
1313
const hash = createSha256Hash("deadbeef"); //b462657d5547c972e675cfd7ee2e313eb033e6aa74f668ca7bd1d79a056c9fea
1414
```
1515

16-
```Clarity
16+
```clarity
1717
;; vote
1818
(define-map votes principal (buff 32))
1919
(map-set votes tx-sender 0xb462657d5547c972e675cfd7ee2e313eb033e6aa74f668ca7bd1d79a056c9fea)
@@ -30,4 +30,4 @@ const hash = createSha256Hash("deadbeef"); //b462657d5547c972e675cfd7ee2e313eb03
3030

3131
**Recipes**
3232

33-
- [create-sha256-hash-clarity](/cookbook/create-sha256-hash-clarity)
33+
- [Create a SHA-256 hash using Clarity](/cookbook/create-sha256-hash-clarity)

0 commit comments

Comments
 (0)