aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-02-06 10:52:16 +0100
committerVolpeon <git@volpeon.ink>2022-02-06 10:52:16 +0100
commit9f1653f2ab64ef8cb4c545416da4241baa481557 (patch)
tree80d208dcacba3f3552d9488fe231243252ff80cc /src
parentLint (diff)
downloadiro-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')
-rw-r--r--src/bem/_element.scss12
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('+');