Skip to content

Commit

Permalink
doc: fix heading of optional console method args
Browse files Browse the repository at this point in the history
PR-URL: #21311
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
targos committed Jun 19, 2018
1 parent 4f17841 commit ef74368
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions doc/api/console.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ operates similarly to the `clear` shell command. On Windows, `console.clear()`
will clear only the output in the current terminal viewport for the Node.js
binary.

### console.count([label='default'])
### console.count([label])
<!-- YAML
added: v8.3.0
-->
Expand Down Expand Up @@ -197,7 +197,7 @@ undefined
>
```

### console.countReset([label='default'])
### console.countReset([label])
<!-- YAML
added: v8.3.0
-->
Expand Down Expand Up @@ -381,7 +381,7 @@ console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']);
// └─────────┴─────┘
```

### console.time(label)
### console.time([label])
<!-- YAML
added: v0.1.104
-->
Expand All @@ -392,7 +392,7 @@ are identified by a unique `label`. Use the same `label` when calling
[`console.timeEnd()`][] to stop the timer and output the elapsed time in
milliseconds to `stdout`. Timer durations are accurate to the sub-millisecond.

### console.timeEnd(label)
### console.timeEnd([label])
<!-- YAML
added: v0.1.104
changes:
Expand Down Expand Up @@ -453,7 +453,7 @@ The following methods are exposed by the V8 engine in the general API but do
not display anything unless used in conjunction with the [inspector][]
(`--inspect` flag).

### console.markTimeline(label)
### console.markTimeline([label])
<!-- YAML
added: v8.0.0
-->
Expand All @@ -476,11 +476,11 @@ the **Profile** panel of the inspector.
```js
console.profile('MyLabel');
// Some code
console.profileEnd();
console.profileEnd('MyLabel');
// Adds the profile 'MyLabel' to the Profiles panel of the inspector.
```

### console.profileEnd()
### console.profileEnd([label])
<!-- YAML
added: v8.0.0
-->
Expand All @@ -490,6 +490,9 @@ current JavaScript CPU profiling session if one has been started and prints
the report to the **Profiles** panel of the inspector. See
[`console.profile()`][] for an example.

If this method is called without a label, the most recently started profile is
stopped.

### console.timeStamp([label])
<!-- YAML
added: v8.0.0
Expand Down Expand Up @@ -523,7 +526,7 @@ This method does not display anything unless used in the inspector. The
[`console.group()`]: #console_console_group_label
[`console.log()`]: #console_console_log_data_args
[`console.profile()`]: #console_console_profile_label
[`console.profileEnd()`]: #console_console_profileend
[`console.profileEnd()`]: #console_console_profileend_label
[`console.time()`]: #console_console_time_label
[`console.timeEnd()`]: #console_console_timeend_label
[`console.timeStamp()`]: #console_console_timestamp_label
Expand Down

0 comments on commit ef74368

Please sign in to comment.