Update Doku aus Driversourcen
Change-Id: I455f0813b970151089b3dc1b8d9407eea323cdd1
diff --git a/doc/LPC/inline-closures b/doc/LPC/inline-closures
index 3a2ecdd..ee7d0a1 100644
--- a/doc/LPC/inline-closures
+++ b/doc/LPC/inline-closures
@@ -43,7 +43,7 @@
But changes of the closure context will not reflect on the
local variable it was copied from and vice versa.
- In addition to the implicite context inherited from the
+ In addition to the implicit context inherited from the
defining function, additional context variables can be defined
in the closure:
@@ -64,7 +64,7 @@
{ return val * x; };
}
- These explicite context variables are useful when the closures
+ These explicit context variables are useful when the closures
needs to keep a state, or to improve performance:
mapping m = ...;