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

Update echo.md - minor changes in description, to match code #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion getting-started/echo.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async fn main() {

Here we've created a TcpListener that can listen for incoming TCP connections. On the
listener we call `incoming` which turns the listener into a `Stream` of inbound client
connections. We then call `for_each` which will yield each inbound client connection.
connections. We then call `next` in a while loop, which will yield each inbound client connection.
For now we're not doing anything with this inbound connection - that's our next step.

Once we have our server, we `.await` on it. Up until this point our
Expand Down