Completed
Push — master ( 6f1b34...ae4bfa )
by Jakub
01:31
created
src/Generator.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
       $path = str_replace($this->source, "", $asset);
186 186
       $target = "$this->output$path";
187 187
       FileSystem::copy($asset, $target);
188
-      echo "Copied $path";
188
+      echo "copied $path";
189 189
     }
190 190
   }
191 191
   
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
       $basename = $file->getBasename(".md") . ".html";
226 226
       $filename = "$this->output$path/$basename";
227 227
       FileSystem::write($filename, $html);
228
-      echo "Created $path/$basename\n";
228
+      echo "created $path/$basename\n";
229 229
       $this->onCreatePage($html, $this, $file->getRealPath());
230 230
     }
231 231
     $this->onAfterGenerate();
Please login to merge, or discard this patch.