Make WordPress Core


Ignore:
Timestamp:
12/14/2018 03:24:35 AM (8 years ago)
Author:
pento
Message:

General: Fix some code formatting issues.

A handful of code formatting issues were introduced in recent commits, runs the auto-fixer on them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentynineteen/inc/template-functions.php

    r44149 r44155  
    365365                $mid2;
    366366
    367                 $m = $l + $l - $v;
    368                 $sv = ( $v - $m ) / $v;
    369                 $h *= 6.0;
     367                $m       = $l + $l - $v;
     368                $sv      = ( $v - $m ) / $v;
     369                $h      *= 6.0;
    370370                $sextant = floor( $h );
    371                 $fract = $h - $sextant;
    372                 $vsf = $v * $sv * $fract;
    373                 $mid1 = $m + $vsf;
    374                 $mid2 = $v - $vsf;
     371                $fract   = $h - $sextant;
     372                $vsf     = $v * $sv * $fract;
     373                $mid1    = $m + $vsf;
     374                $mid2    = $v - $vsf;
    375375
    376376                switch ( $sextant ) {
Note: See TracChangeset for help on using the changeset viewer.