Skip to content
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