Skip to content

Commit

Permalink
Fix typo and formatting in docs (#1378)
Browse files Browse the repository at this point in the history
- Fix typo and add back-ticks
  • Loading branch information
lahirumaramba committed Jul 15, 2021
1 parent ba07e12 commit 21869ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/messaging/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ export namespace messaging {
}

/**
* Payload for the admin.messaging.send() operation. The payload contains all the fields
* in the BaseMessage type, and exactly one of token, topic or condition.
* Payload for the `admin.messaging.send()` operation. The payload contains all the fields
* in the `BaseMessage` type, and exactly one of token, topic or condition.
*/
export type Message = TokenMessage | TopicMessage | ConditionMessage;

/**
* Payload for the admin.messaing.sendMulticast() method. The payload contains all the fields
* in the BaseMessage type, and a list of tokens.
* Payload for the `admin.messaging.sendMulticast()` method. The payload contains all the fields
* in the `BaseMessage` type, and a list of tokens.
*/
export interface MulticastMessage extends BaseMessage {
tokens: string[];
Expand Down

0 comments on commit 21869ee

Please sign in to comment.