Skip to content

Commit

Permalink
fix: lack space (source-academy#780)
Browse files Browse the repository at this point in the history
Co-authored-by: xufeng <[email protected]>
  • Loading branch information
clean99 and xufeng authored May 26, 2022
1 parent 0a7f3ea commit ba71acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml/chapter2/section3/subsection2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ function make_exp(base, exp) {
: list("**", base, exp);
}
function is_exp(x) {
return is_pair(x) &amp;&amp; head(x) ==="**";
return is_pair(x) &amp;&amp; head(x) === "**";
}
function deriv(exp, variable) {
return is_number(exp)
Expand Down

0 comments on commit ba71acc

Please sign in to comment.