Skip to content

Commit

Permalink
Fix typo and format issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Aug 28, 2019
1 parent a4534be commit 10ad52e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Common.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* Te goal of this file is to allow developers a location
* The goal of this file is to allow developers a location
* where they can overwrite core procedural functions and
* replace them with their own. This file is loaded during
* the bootstrap process and is called during the frameworks
Expand Down
4 changes: 2 additions & 2 deletions system/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@
}

// Let's see if an app/Common.php file exists
if ( file_exists(APPPATH . 'Common.php')) {
// If it does, let's require it
if (file_exists(APPPATH . 'Common.php'))
{
require_once APPPATH . 'Common.php';
}

Expand Down

0 comments on commit 10ad52e

Please sign in to comment.