Skip to content

Make examples coherent with text #3787

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions text/0505-api-comment-conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ standard library. These are called out specifically in the text itself.
Avoid block comments. Use line comments instead:

```rust
// Wait for the main task to return, and set the process error code
// Waits for the main task to return, and sets the process error code
// appropriately.
```

Instead of:

```rust
/*
* Wait for the main task to return, and set the process error code
* Waits for the main task to return, and sets the process error code
* appropriately.
*/
```
Expand Down
4 changes: 2 additions & 2 deletions text/1574-more-api-documentation-conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,15 +332,15 @@ to every grammar question, but there is often some kind of formal consensus.
Avoid block comments. Use line comments instead:

```rust
// Wait for the main task to return, and set the process error code
// Waits for the main task to return, and sets the process error code
// appropriately.
```

Instead of:

```rust
/*
* Wait for the main task to return, and set the process error code
* Waits for the main task to return, and sets the process error code
* appropriately.
*/
```
Expand Down