You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ We're excited to see your [pull request](https://help.github.com/articles/about-
93
93
before you get started, so others are aware that you're working on it. If
94
94
there's no existing issue for the change you'd like to make, you can
95
95
[create a new issue](https://github.com/socraticorg/mathsteps/issues/new).
96
-
96
+
97
97
- The best issues to work on are [these issues that are not assigned or long term goals](https://github.com/socraticorg/mathsteps/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20-label%3Aassigned%20%20-label%3Aquestion%20%20-label%3A%22longer%20term%20goals%22%20%20-label%3A%22needs%20further%20discussion%22%20)
98
98
99
99
- Make sure all the unit tests pass (with `npm test`) before creating the pull
@@ -110,7 +110,7 @@ We're excited to see your [pull request](https://help.github.com/articles/about-
110
110
which makes sure tests are passing and the code is eslint-compliant.
111
111
- If you want to see what the expression tree looks like at any point in the
112
112
code (for debugging), you can log a `node` as an expression string (e.g.
113
-
'2x + 5') with `console.log(print(node))`, and you can log the full tree
113
+
'2x + 5') with `console.log(print.ascii(node))`, and you can log the full tree
114
114
structure with `console.log(JSON.stringify(node, null, 2))`
0 commit comments