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
- [17.3](#comments--actionitems) Prefixing your comments with `FIXME` or `TODO` helps other developers quickly understand if you're pointing out a problem that needs to be revisited, or if you're suggesting a solution to the problem that needs to be implemented. These are different than regular comments because they are actionable. The actions are `FIXME: -- need to figure this out` or `TODO: -- need to implement`.
1962
+
- [17.4](#comments--actionitems) Prefixing your comments with `FIXME` or `TODO` helps other developers quickly understand if you're pointing out a problem that needs to be revisited, or if you're suggesting a solution to the problem that needs to be implemented. These are different than regular comments because they are actionable. The actions are `FIXME: -- need to figure this out` or `TODO: -- need to implement`.
1927
1963
1928
1964
<a name="comments--fixme"></a><a name="17.4"></a>
1929
-
- [17.4](#comments--fixme) Use `// FIXME:` to annotate problems.
1965
+
- [17.5](#comments--fixme) Use `// FIXME:` to annotate problems.
1930
1966
1931
1967
```javascript
1932
1968
class Calculator extends Abacus {
@@ -1940,7 +1976,7 @@ Other Style Guides
1940
1976
```
1941
1977
1942
1978
<a name="comments--todo"></a><a name="17.5"></a>
1943
-
- [17.5](#comments--todo) Use `// TODO:` to annotate solutions to problems.
1979
+
- [17.6](#comments--todo) Use `// TODO:` to annotate solutions to problems.
0 commit comments