Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix wording mistake for Message.sequence in specs #927

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions website/docs/spec/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ A message record encodes a single timestamped message on a channel.

The message encoding and schema must match that of the Channel record corresponding to the message's channel ID.

| Bytes | Name | Type | Description |
| ----- | ------------ | --------- | --------------------------------------------------------------------------------------------------------------- |
| 2 | channel_id | uint16 | Channel ID |
| 4 | sequence | uint32 | Optional message counter assigned by publisher. If not assigned by publisher, must be recorded by the recorder. |
| 8 | log_time | Timestamp | Time at which the message was recorded. |
| 8 | publish_time | Timestamp | Time at which the message was published. If not available, must be set to the log time. |
| N | data | Bytes | Message data, to be decoded according to the schema of the channel. |
| Bytes | Name | Type | Description |
| ----- | ------------ | --------- | ----------------------------------------------------------------------------------------------------------- |
| 2 | channel_id | uint16 | Channel ID |
| 4 | sequence | uint32 | Optional message counter assigned by publisher. If assigned by publisher, must be recorded by the recorder. |
| 8 | log_time | Timestamp | Time at which the message was recorded. |
| 8 | publish_time | Timestamp | Time at which the message was published. If not available, must be set to the log time. |
| N | data | Bytes | Message data, to be decoded according to the schema of the channel. |

### Chunk (op=0x06)

Expand Down
Loading