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 table in "Nodes and topics tutorial" #356

Merged
merged 4 commits into from
Sep 12, 2022
Merged
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
18 changes: 9 additions & 9 deletions tutorials/03_nodesAndTopics.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The following symbols are not allowed as part of the topic name: `@`, `:=`, `~`.
| /topicA/ | Valid | Equivalent to /topicA |
| topicA | Valid | |
| /a/b | Valid | |
| \ | Invalid | Empty string is invalid |
| | Invalid | Empty string is invalid |
| my topic | Invalid | Contains white space |
| //image | Invalid | Contains two consecutive `//` |
| / | Invalid | `/` topic is not allowed |
Expand Down Expand Up @@ -108,12 +108,12 @@ invalid too.
|Namespace |Topic name | Fully qualified topic | Validity| Comment |
|:-------: |:---------:| :--------------------:|:-------:|:---------------------------------------:|
|ns1 |/topicA | /topicA | Valid | Absolute topic |
|\ |/topicA | /topicA | Valid | Absolute topic |
| |/topicA | /topicA | Valid | Absolute topic |
|ns1 |topicA | /ns1/topicA | Valid | |
|\ |topicA | /topicA | Valid | |
|ns1 |topic A | \ | Invalid | Topic contains white space |
|\ |topic A | \ | Invalid | Topic contains white space |
|my ns |topicA | \ | Invalid | Namespace contains white space |
|//ns |topicA | \ | Invalid | Namespace contains two consecutive `//`|
|/ |topicA | \ | Invalid | `/` namespace is not allowed |
|~myns |topicA | \ | Invalid | Symbol `~` not allowed |
| |topicA | /topicA | Valid | |
|ns1 |topic A | | Invalid | Topic contains white space |
| |topic A | | Invalid | Topic contains white space |
|my ns |topicA | | Invalid | Namespace contains white space |
|//ns |topicA | | Invalid | Namespace contains two consecutive `//`|
|/ |topicA | | Invalid | `/` namespace is not allowed |
|~myns |topicA | | Invalid | Symbol `~` not allowed |