Skip to content

Commit

Permalink
JS console docs: Remove 'obj1' mentions (#38208)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc authored Feb 18, 2025
1 parent 5f19615 commit 7ed2362
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/api/console/debug_static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ console.debug(msg, subst1, /* …, */ substN)
### Parameters

- `val1``valN`
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `obj1` is a string, which is described subsequently.
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `val1` is a string, which is described subsequently.
- `msg`
- : A JavaScript string containing zero or more substitution strings, which are replaced with `subst1` through `substN` in consecutive order up to the number of substitution strings. See [Using string substitutions](/en-US/docs/Web/API/console#using_string_substitutions) for a description of how substitutions work.
- `subst1``substN`
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/console/error_static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ console.error(msg, subst1, /* …, */ substN)
### Parameters

- `val1``valN`
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `obj1` is a string, which is described subsequently.
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `val1` is a string, which is described subsequently.
- `msg`
- : A JavaScript string containing zero or more substitution strings, which are replaced with `subst1` through `substN` in consecutive order up to the number of substitution strings. See [Using string substitutions](/en-US/docs/Web/API/console#using_string_substitutions) for a description of how substitutions work.
- `subst1``substN`
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/console/info_static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ console.info(msg, subst1, /* …, */ substN)
### Parameters

- `val1``valN`
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `obj1` is a string, which is described subsequently.
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `val1` is a string, which is described subsequently.
- `msg`
- : A JavaScript string containing zero or more substitution strings, which are replaced with `subst1` through `substN` in consecutive order up to the number of substitution strings. See [Using string substitutions](/en-US/docs/Web/API/console#using_string_substitutions) for a description of how substitutions work.
- `subst1``substN`
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/console/log_static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ console.log(msg, subst1, /* …, */ substN)
### Parameters

- `val1``valN`
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `obj1` is a string, which is described subsequently.
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `val1` is a string, which is described subsequently.
- `msg`
- : A JavaScript string containing zero or more substitution strings, which are replaced with `subst1` through `substN` in consecutive order up to the number of substitution strings. See [Using string substitutions](/en-US/docs/Web/API/console#using_string_substitutions) for a description of how substitutions work.
- `subst1``substN`
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/console/warn_static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ console.warn(msg, subst1, /* …, */ substN)
### Parameters

- `val1``valN`
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `obj1` is a string, which is described subsequently.
- : A list of JavaScript values to output. A representation of each of these values is output to the console in the order given with some type of separation between each of them. There is a special case if `val1` is a string, which is described subsequently.
- `msg`
- : A JavaScript string containing zero or more substitution strings, which are replaced with `subst1` through `substN` in consecutive order up to the number of substitution strings. See [Using string substitutions](/en-US/docs/Web/API/console#using_string_substitutions) for a description of how substitutions work.
- `subst1``substN`
Expand Down

0 comments on commit 7ed2362

Please sign in to comment.