Skip to content

Commit

Permalink
Rollup merge of #103789 - domfarolino:e0382, r=Dylan-DPC
Browse files Browse the repository at this point in the history
Update E0382.md

Remove extra period after sentence.
  • Loading branch information
Dylan-DPC authored Oct 31, 2022
2 parents d80bcf8 + b978bba commit 4a254d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_error_codes/src/error_codes/E0382.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ with `#[derive(Clone)]`.

Some types have no ownership semantics at all and are trivial to duplicate. An
example is `i32` and the other number types. We don't have to call `.clone()` to
clone them, because they are marked `Copy` in addition to `Clone`. Implicit
clone them, because they are marked `Copy` in addition to `Clone`. Implicit
cloning is more convenient in this case. We can mark our own types `Copy` if
all their members also are marked `Copy`.

Expand Down

0 comments on commit 4a254d5

Please sign in to comment.