Skip to content

Commit 691b299

Browse files
committedApr 19, 2023
Fix TSDocs
1 parent 8190234 commit 691b299

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎lib/at-rule.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ declare namespace AtRule {
6161
* }
6262
* ```
6363
*
64-
* If it’s followed in the CSS by a {} block, this node will have
64+
* If it’s followed in the CSS by a `{}` block, this node will have
6565
* a nodes property representing its children.
6666
*
6767
* ```js
@@ -93,7 +93,7 @@ declare class AtRule_ extends Container {
9393

9494
/**
9595
* The at-rule’s parameters, the values that follow the at-rule’s name
96-
* but precede any {} block.
96+
* but precede any `{}` block.
9797
*
9898
* ```js
9999
* const root = postcss.parse('@media print, screen {}')

‎lib/processor.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ declare class Processor_ {
5959
* * A plugin in `Plugin` format.
6060
* * A plugin creator function with `pluginCreator.postcss = true`.
6161
* PostCSS will call this function without argument to get plugin.
62-
* * A function. PostCSS will pass the function a @{link Root}
62+
* * A function. PostCSS will pass the function a {@link Root}
6363
* as the first argument and current `Result` instance
6464
* as the second.
6565
* * Another `Processor` instance. PostCSS will copy plugins
@@ -95,7 +95,7 @@ declare class Processor_ {
9595
* ```
9696
*
9797
* @param css String with input CSS or any object with a `toString()` method,
98-
* like a Buffer. Optionally, senda `Result` instance
98+
* like a Buffer. Optionally, send a `Result` instance
9999
* and the processor will take the `Root` from it.
100100
* @param opts Options.
101101
* @return Promise proxy.

0 commit comments

Comments
 (0)
Please sign in to comment.