<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -99,7 +99,7 @@ Available options are:
 
 {#style-option} `:style`
 : Sets the style of the CSS output.
-  See the section on Output Style, above.
+  See [Output Style](#output_style).
 
 {#property_syntax-option} `:property_syntax`
 : Forces the document to use one syntax for properties.
@@ -725,23 +725,30 @@ and equality operators
 (`==`, `!=`)
 are supported for all types.
 
-Most arithmetic operations are supported for color values,
-where they work piecewise:
+All arithmetic operations are supported for color values,
+where they work piecewise.
+This means that the operation is performed
+on the red, green, and blue components in turn.
+For example:
 
     p
       color = #010203 + #040506
 
-is compiled to:
+computes `01 + 04 = 05`, `02 + 05 = 07`, and `03 + 06 = 09`,
+and is compiled to:
 
     p {
       color: #050709; }
 
-Some arithmetic operations even work between numbers and colors:
+Arithmetic operations even work between numbers and colors,
+also piecewise.
+For example:
 
     p
       color = #010203 * 2
 
-is compiled to:
+computes `01 * 2 = 02`, `02 * 2 = 04`, and `03 * 2 = 06`,
+and is compiled to:
 
     p {
       color: #020406; }
@@ -756,11 +763,22 @@ is compiled to:
     p {
       cursor: e-resize; }
 
+By default, if two values are placed next to one another,
+they are concatenated with a space:
+
+    p
+      margin = 3px + 4px &quot;auto&quot;
+
+is compiled to:
+
+    p {
+      margin: 7px auto; }
+
 Within a string of text, #{} style interpolation can be used to
 place dynamic values within the string:
 
     p
-      border = &quot;#{5px + 10pt} solid #ccc&quot;
+      border = &quot;#{5px + 10px} solid #ccc&quot;
 
 Finally, SassScript supports `and`, `or`, and `not` operators
 for boolean values.</diff>
      <filename>doc-src/SASS_REFERENCE.md</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>252a0485de7ad99b67935d16f94e05520d950b8b</id>
    </parent>
    <parent>
      <id>01fce5dd9f47dbd7b899cf586edc0f468a0237d2</id>
    </parent>
  </parents>
  <author>
    <name>Nathan Weizenbaum</name>
    <email>nex342@gmail.com</email>
  </author>
  <url>http://github.com/nex3/haml/commit/ef86bc6e9ffeb035b559a9641e6d72226bd9ea91</url>
  <id>ef86bc6e9ffeb035b559a9641e6d72226bd9ea91</id>
  <committed-date>2009-07-09T10:54:43-07:00</committed-date>
  <authored-date>2009-07-09T10:54:43-07:00</authored-date>
  <message>Merge branch 'stable'</message>
  <tree>c61daade45c8539a1ed105006cf8575400b855dc</tree>
  <committer>
    <name>Nathan Weizenbaum</name>
    <email>nex342@gmail.com</email>
  </committer>
</commit>
