Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

Commit dd3185a

Browse files
committed
docs: fix headings
1 parent b0d511a commit dd3185a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Reports a problem to Deskbookers.
55

66
```js
77
await deskbookers.actions.report({
8-
message: 'This function aint working!',
8+
message: `This button ain't working!`,
99
category: 'Bugs',
1010
browser: 'IE6',
1111
page: '/home',
@@ -17,7 +17,7 @@ await deskbookers.actions.report({
1717
})
1818
```
1919

20-
### Arguments
20+
#### Arguments
2121
Name | Type | Description | Required
2222
--- | --- | --- | ---
2323
message | String | Problem message | Yes
@@ -27,7 +27,7 @@ page | String | Page the problem occured | Yes
2727
context | String | Context in which problem occured | Yes
2828
extras | Array | Extra information about problem | No
2929

30-
### Example response
30+
#### Example response
3131

3232
```json
3333
true

docs/events.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Retrieves the unread count of the events, and returns a breakdown of unread coun
77
const unread = await deskbookers.events.unread()
88
```
99

10-
### Example response
10+
#### Example response
1111

1212
```json
1313
{
@@ -39,7 +39,7 @@ for await (let currentBatch of eventsIterator) {
3939
}
4040
```
4141

42-
### Arguments
42+
#### Arguments
4343
Name | Type | Description | Required
4444
--- | --- | --- | ---
4545
tabId | Number | Tab id | Yes
@@ -53,7 +53,7 @@ Gets all the events for a specific user, if only events of certain type where to
5353
const res = await deskbookers.events.getAllEvents(30, 0, ['booking'])
5454
```
5555

56-
### Arguments
56+
#### Arguments
5757
Name | Type | Description | Required
5858
--- | --- | --- | ---
5959
limit | Number | Tab id | Yes
@@ -68,7 +68,7 @@ Gets all the events for a specific user, if only events of certain type where to
6868
const res = await deskbookers.events.markAllAsRead(['booking'])
6969
```
7070

71-
### Arguments
71+
#### Arguments
7272
Name | Type | Description | Required
7373
--- | --- | --- | ---
7474
tags | Array | Tags to filter the results | No

docs/workplaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const urgency = await deskbookers.workplaces.urgency(12345, {
1414
})
1515
```
1616

17-
### Arguments
17+
#### Arguments
1818
Name | Type | Description | Required
1919
--- | --- | --- | ---
2020
id | Number | Workplace ID | Yes

0 commit comments

Comments
 (0)