diff --git a/docs/content/rules/sort-exports.mdx b/docs/content/rules/sort-exports.mdx
index 8a6d28643..22b384dfc 100644
--- a/docs/content/rules/sort-exports.mdx
+++ b/docs/content/rules/sort-exports.mdx
@@ -110,7 +110,7 @@ Controls whether sorting should be case-sensitive or not.
default: `false`
-Allows you to use comments to separate the members of intersection types into logical groups. This can help in organizing and maintaining large enums by creating partitions within the enum based on comments.
+Allows you to use comments to separate the exports into logical groups. This can help in organizing and maintaining large enums by creating partitions within the enum based on comments.
- `true` — All comments will be treated as delimiters, creating partitions.
- `false` — Comments will not be used as delimiters.
diff --git a/docs/content/rules/sort-objects.mdx b/docs/content/rules/sort-objects.mdx
index a8e6dbc3d..3cee57eca 100644
--- a/docs/content/rules/sort-objects.mdx
+++ b/docs/content/rules/sort-objects.mdx
@@ -188,8 +188,9 @@ Controls whether sorting should be case-sensitive or not.
Allows you to use comments to separate the keys of objects into logical groups. This can help in organizing and maintaining large enums by creating partitions within the enum based on comments.
- `true` — All comments will be treated as delimiters, creating partitions.
-- `false` — Comments will not be used as delimiters.
-- string — A glob pattern to specify which comments should act as delimiters.
+- `false` — Comments will not be used as delimiters.
+- `string` — A glob pattern to specify which comments should act as delimiters.
+- `string[]` — An array of glob patterns to specify which comments should act as delimiters.
### partitionByNewLine
diff --git a/rules/sort-classes.ts b/rules/sort-classes.ts
index 2bcef391f..5afe5d96a 100644
--- a/rules/sort-classes.ts
+++ b/rules/sort-classes.ts
@@ -72,7 +72,7 @@ export default createEslintRule({
},
partitionByComment: {
description:
- 'Allows to use comments to separate the nodes into logical groups.',
+ 'Allows to use comments to separate the class members into logical groups.',
anyOf: [
{
type: 'array',
diff --git a/rules/sort-enums.ts b/rules/sort-enums.ts
index a7635e176..4d4a7ccd6 100644
--- a/rules/sort-enums.ts
+++ b/rules/sort-enums.ts
@@ -71,7 +71,7 @@ export default createEslintRule({
},
partitionByComment: {
description:
- 'Allows you to use comments to separate the class members into logical groups.',
+ 'Allows you to use comments to separate the members of enums into logical groups.',
anyOf: [
{
type: 'array',
diff --git a/rules/sort-exports.ts b/rules/sort-exports.ts
index a69921b43..15dbc12e9 100644
--- a/rules/sort-exports.ts
+++ b/rules/sort-exports.ts
@@ -61,7 +61,7 @@ export default createEslintRule({
},
partitionByComment: {
description:
- 'Allows you to use comments to separate the class members into logical groups.',
+ 'Allows you to use comments to separate the exports into logical groups.',
anyOf: [
{
type: 'array',
diff --git a/rules/sort-objects.ts b/rules/sort-objects.ts
index 71dc0ecde..efb4ac87e 100644
--- a/rules/sort-objects.ts
+++ b/rules/sort-objects.ts
@@ -86,7 +86,7 @@ export default createEslintRule({
},
partitionByComment: {
description:
- 'Allows you to use comments to separate the class members into logical groups.',
+ 'Allows you to use comments to separate the keys of objects into logical groups.',
anyOf: [
{
type: 'array',