about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-10-31 14:52:57 +0530
committerGitHub <noreply@github.com>2022-10-31 14:52:57 +0530
commit4a254d557aef513c4dec1757eb1c2e7913a9f5a0 (patch)
tree50b298f204ba63b6de1acf5f7667559bc86b0d8a
parentd80bcf8316894024336bea44ce572ae2545315e4 (diff)
parentb978bba6a9ca3df52eef53fc38e46ffea4bd203e (diff)
downloadrust-4a254d557aef513c4dec1757eb1c2e7913a9f5a0.tar.gz
rust-4a254d557aef513c4dec1757eb1c2e7913a9f5a0.zip
Rollup merge of #103789 - domfarolino:e0382, r=Dylan-DPC
Update E0382.md

Remove extra period after sentence.
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0382.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0382.md b/compiler/rustc_error_codes/src/error_codes/E0382.md
index d1408a06296..cbc4980f8ca 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0382.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0382.md
@@ -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`.