Fix spelling errors (#384)

aligment -> alignment
constructable -> constructible
constuctible -> constructible
contructed -> constructed
destructable -> destructible
futher -> further
implcit -> implicit
implemenation -> implementation
intrinics -> intrinsics
This commit is contained in:
Sungmann Cho 2019-10-01 03:24:41 +09:00 committed by CJ Johnson
parent 502efe6d78
commit 882b3501a3
9 changed files with 11 additions and 11 deletions

View file

@ -36,7 +36,7 @@
// InsertEdge() is very fast when the edge already exists, and reasonably fast
// otherwise.
// FindPath() is linear in the size of the graph.
// The current implemenation uses O(|V|+|E|) space.
// The current implementation uses O(|V|+|E|) space.
#include <cstdint>

View file

@ -355,7 +355,7 @@ class Waiter::WinHelper {
"ConditionVariableStorage does not have the same "
"alignment as CONDITION_VARIABLE");
// The SRWLOCK and CONDITION_VARIABLE types must be trivially constuctible
// The SRWLOCK and CONDITION_VARIABLE types must be trivially constructible
// and destructible because we never call their constructors or destructors.
static_assert(std::is_trivially_constructible<SRWLOCK>::value,
"The SRWLOCK type must be trivially constructible");