about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2018-11-08 19:01:59 +0100
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-11-09 19:17:49 -0600
commitb871e0466f40ffe533870110b87d564610cda94c (patch)
tree21351cfbd76eaed815433e618364feb8b4d87168 /src/doc
parent9d37e01ac5ea6c5019d990a4f3b881170df492b8 (diff)
downloadrust-b871e0466f40ffe533870110b87d564610cda94c.tar.gz
rust-b871e0466f40ffe533870110b87d564610cda94c.zip
caps nit
Co-Authored-By: oli-obk <github35764891676564198441@oli-obk.de>
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/construction.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/construction.md b/src/doc/rustc-dev-guide/src/mir/construction.md
index 3c0fbd11a0a..b22b67a3683 100644
--- a/src/doc/rustc-dev-guide/src/mir/construction.md
+++ b/src/doc/rustc-dev-guide/src/mir/construction.md
@@ -112,7 +112,7 @@ again). Instead there are `Rvalue`s for binary and unary operators and index ope
 These `Rvalue`s later get codegened to llvm primitive operations or llvm intrinsics.
 
 Operators on all other types get lowered to a function call to their `impl` of the
-Operator's corresponding trait.
+operator's corresponding trait.
 
 Irrelevant of the lowering kind, the arguments to the operator are lowered to `Operand`s.
 This means all arguments are either constants, or refer to an already existing value