Skip to content

Commit fe8f104

Browse files
committed
fix example script
update logo image meta text
1 parent 1b4ab3d commit fe8f104

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/javascript-api/mokapi-encoding/base64-decode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Decodes a string value that is encoded with base-64 to its equivalent unencoded
2222
import { base64 } from 'mokapi/encoding'
2323

2424
export default function() {
25-
console.log(`The base64 decoded string of 'aGVsbG8gd29ybGQ=' is: ${base.decode('aGVsbG8gd29ybGQ=')}`)
25+
console.log(`The base64 decoded string of 'aGVsbG8gd29ybGQ=' is: ${base64.decode('aGVsbG8gd29ybGQ=')}`)
2626
}
2727
```

docs/javascript-api/mokapi-encoding/base64-encode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Encodes a string value to its equivalent string representation that is encoded w
2222
import { base64 } from 'mokapi/encoding'
2323

2424
export default function() {
25-
console.log(`The base64 encoding of 'hello world' is: ${base.encode('hello world')}`)
25+
console.log(`The base64 encoding of 'hello world' is: ${base64.encode('hello world')}`)
2626
}
2727
```

webui/src/views/Home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function hasTouchSupport() {
5656
</p>
5757
</div>
5858
<div class="col-12 col-lg-5">
59-
<img src="/logo.svg" alt="Mokapi API Mock Tool" class="mx-auto d-block" />
59+
<img src="/logo.svg" alt="Mokapi logo with an okapi symbol representing friendly and elegant developer tooling" title="Mokapi – the okapi-inspired logo for modern API mocking" class="mx-auto d-block" />
6060
</div>
6161
<div class="col-12 d-block d-md-none">
6262
<p style="margin-top: 2rem;">

0 commit comments

Comments
 (0)