week1 tweaks
[lambda.git] / week1.mdwn
index 6fadd1f..27a7979 100644 (file)
@@ -114,19 +114,19 @@ The lambda calculus we'll be focusing on for the first part of the course has no
 Here is its syntax:
 
 <blockquote>
-**Variables**: `x`, `y`, `z`, ...
+<strong>Variables</strong>: <code>x</code>, <code>y</code>, <code>z</code>...
 </blockquote>
 
 Each variable is an expression. For any expressions M and N and variable a, the following are also expressions:
 
 <blockquote>
-**Abstract**: <code>(&lambda;a M)</code>
+<strong>Abstract</strong>: <code>(&lambda;a M)</code>
 </blockquote>
 
 We'll tend to write <code>(&lambda;a M)</code> as just `( \a M )`.
 
 <blockquote>
-**Application**: `(M N)`
+<strong>Application</strong>: <code>(M N)</code>
 </blockquote>
 
 Some authors reserve the term "term" for just variables and abstracts. We won't participate in that convention; we'll probably just say "term" and "expression" indiscriminately for expressions of any of these three forms.