diff options
author | Volpeon <git@volpeon.ink> | 2022-02-06 10:52:16 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2022-02-06 10:52:16 +0100 |
commit | 9f1653f2ab64ef8cb4c545416da4241baa481557 (patch) | |
tree | 80d208dcacba3f3552d9488fe231243252ff80cc /src/bem | |
parent | Lint (diff) | |
download | iro-sass-9f1653f2ab64ef8cb4c545416da4241baa481557.tar.gz iro-sass-9f1653f2ab64ef8cb4c545416da4241baa481557.tar.bz2 iro-sass-9f1653f2ab64ef8cb4c545416da4241baa481557.zip |
Rename next-twin-element to next-twin-elem
Diffstat (limited to 'src/bem')
-rw-r--r-- | src/bem/_element.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bem/_element.scss b/src/bem/_element.scss index 25377d6..64862b0 100644 --- a/src/bem/_element.scss +++ b/src/bem/_element.scss | |||
@@ -429,7 +429,7 @@ | |||
429 | /// @include elem('elem') { | 429 | /// @include elem('elem') { |
430 | /// /* some element definitions */ | 430 | /// /* some element definitions */ |
431 | /// | 431 | /// |
432 | /// @include next-twin-element { | 432 | /// @include next-twin-elem { |
433 | /// /* some twin element definitions */ | 433 | /// /* some twin element definitions */ |
434 | /// } | 434 | /// } |
435 | /// } | 435 | /// } |
@@ -450,7 +450,7 @@ | |||
450 | /// @include elem('elem1', 'elem2') { | 450 | /// @include elem('elem1', 'elem2') { |
451 | /// /* some element definitions */ | 451 | /// /* some element definitions */ |
452 | /// | 452 | /// |
453 | /// @include next-twin-element { | 453 | /// @include next-twin-elem { |
454 | /// /* some twin element definitions */ | 454 | /// /* some twin element definitions */ |
455 | /// } | 455 | /// } |
456 | /// } | 456 | /// } |
@@ -472,7 +472,7 @@ | |||
472 | $context: nth($result, 2); | 472 | $context: nth($result, 2); |
473 | 473 | ||
474 | @include validators.validate( | 474 | @include validators.validate( |
475 | 'next-twin-element', | 475 | 'next-twin-elem', |
476 | (), | 476 | (), |
477 | $selector, | 477 | $selector, |
478 | $context | 478 | $context |
@@ -491,7 +491,7 @@ | |||
491 | /// | 491 | /// |
492 | /// @return {list} A list with two items: 1. selector, 2. context or `null` | 492 | /// @return {list} A list with two items: 1. selector, 2. context or `null` |
493 | /// | 493 | /// |
494 | /// @see {mixin} next-twin-element | 494 | /// @see {mixin} next-twin-elem |
495 | /// | 495 | /// |
496 | @function related-twin-elem($sign) { | 496 | @function related-twin-elem($sign) { |
497 | $noop: contexts.assert-stack-count(vars.$context-id, vars.$max-depth); | 497 | $noop: contexts.assert-stack-count(vars.$context-id, vars.$max-depth); |
@@ -618,7 +618,7 @@ | |||
618 | /// | 618 | /// |
619 | /// @content | 619 | /// @content |
620 | /// | 620 | /// |
621 | @mixin next-twin-element { | 621 | @mixin next-twin-elem { |
622 | @include related-twin-elem('+') { | 622 | @include related-twin-elem('+') { |
623 | @content; | 623 | @content; |
624 | } | 624 | } |
@@ -630,7 +630,7 @@ | |||
630 | /// | 630 | /// |
631 | /// @return {list} A list with two items: 1. selector, 2. context or `null` | 631 | /// @return {list} A list with two items: 1. selector, 2. context or `null` |
632 | /// | 632 | /// |
633 | /// @see {mixin} next-twin-element | 633 | /// @see {mixin} next-twin-elem |
634 | /// | 634 | /// |
635 | @function next-twin-elem() { | 635 | @function next-twin-elem() { |
636 | @return related-twin-elem('+'); | 636 | @return related-twin-elem('+'); |