Added 'Variable assignments:' section to CONTRIBUTING.md.

Change-Id: I3aab088441ca380aa788e15802a8a64d39433d4d
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c0258c5..eb8f42f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -155,6 +155,22 @@
             # policy       Power restore policy (e.g "RESTORE_LAST_STATE",
             #              ${RESTORE_LAST_STATE}).
         ```
+-   Variable assignments:
+
+    When assigning a variable as output from a keyword, do not precede the
+    equal sign with a space.
+
+    Correct examples:
+    ```
+    ${var1}=  Set Variable  ${1}
+    ${var1}=  My Keyword
+    ```
+    Incorrect examples:
+
+    ```
+    ${var1} =  Set Variable  ${1}
+    ${var1} =  My Keyword
+    ```
 -   General variable naming conventions:
     -   Variable names should be lower case with few exceptions:
         -   Environment variables should be all upper case.