Documentation update from Driver sources

Change-Id: Ide409fb7a65ec5fefaccdcc821705d80af10e343
diff --git a/doc/LPC/operators b/doc/LPC/operators
index 24b3618..bd092dc 100644
--- a/doc/LPC/operators
+++ b/doc/LPC/operators
@@ -80,14 +80,19 @@
         expr1 == expr2        Compare values. Valid for strings, numbers,
                               objects and closures.
 
-        expr1 != expr1        Compare values. Valid for strings, numbers,
+        expr1 != expr2        Compare values. Valid for strings, numbers,
                               objects and closures.
 
-        expr1 > expr2        Valid for strings and numbers.
+        expr1 in expr2        Check whether 'expr1' is contained in 'expr2':
+                              a value in an array, a key in a mapping,
+                              a character or substring in a string, or a
+                              a byte or byte sequence in a byte sequence.
+
+        expr1 > expr2         Valid for strings and numbers.
 
         expr1 >= expr2        Valid for strings and numbers.
 
-        expr1 < expr2        Valid for strings and numbers.
+        expr1 < expr2         Valid for strings and numbers.
 
         expr1 <= expr2        Valid for strings and numbers.
 
@@ -201,7 +206,7 @@
                         'ident' may be given as string containing the
                         full pathname, or as identifier containing the
                         pure basename.
-                        If 'ident' is omitted, the last inherited
+                        If 'ident' is omitted, the first inherited
                         function of this 'name' is called.
 
         ({ })                Array constructor.
@@ -215,6 +220,7 @@
         LDMud 3.2.10 extended '&' to mappings.
         LDMud 3.3 extended '|' and '^' to arrays.
         LDMud 3.6.2 added '.'.
+        LDMud 3.6.5 added 'in'.
 
 SEE ALSO
         arrays(LPC), alists(LPC), mappings(LPC), closures(LPC)