We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The first protocol example in the spec is: "$11\r\nhelloworld\r\n" This is incorrect.
Either of these would be correct: "$10\r\nhelloworld\r\n" "$11\r\nhello world\r\n"
The text was updated successfully, but these errors were encountered:
A similar problem with the example for streamed strings
$?\r\n;4\r\nHell\r\n;5\r\no wor\r\n;1\r\nd\r\n;0\r\n
The size is correct but the the text is "Hello word" instead of "Hello world".
Sorry, something went wrong.
No branches or pull requests
The first protocol example in the spec is:
"$11\r\nhelloworld\r\n"
This is incorrect.
Either of these would be correct:
"$10\r\nhelloworld\r\n"
"$11\r\nhello world\r\n"
The text was updated successfully, but these errors were encountered: