Skip to content

Commit e5513b6

Browse files
authored
Fix missing code block delimiters in comment blocks (#18837)
## Summary I fixed some code blocks inside comment blocks that were missing delimiters.
1 parent fed6c6a commit e5513b6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/@tailwindcss-upgrade/src/codemods/config/migrate-postcss.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { highlight, info, relative, success, warn } from '../../utils/renderer'
1515
// autoprefixer: {},
1616
// }
1717
// }
18+
// ```
1819
export async function migratePostCSSConfig(base: string) {
1920
let ranMigration = false
2021
let didMigrate = false

packages/tailwindcss/src/candidate.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ export function* parseCandidate(input: string, designSystem: DesignSystem): Iter
385385
//
386386
// E.g.:
387387
//
388+
// ```
388389
// bg-(--my-var)
389390
// ^^ -> Root
390391
// ^^^^^^^^^^ -> Arbitrary value

0 commit comments

Comments
 (0)