Skip to content

Commit

Permalink
Minor wording fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweissman committed Aug 8, 2017
1 parent aedaaeb commit ef78c7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function formatExceptionBody()
{
$e = $this->exception;

$text = 'Slim Application Error:' . PHP_EOL;
$text = 'UserFrosting Application Error:' . PHP_EOL;
$text .= $this->formatExceptionFragment($e);

while ($e = $e->getPrevious()) {
Expand Down
2 changes: 1 addition & 1 deletion app/sprinkles/core/src/Sprunje/Sprunje.php
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public function applySorts($query)
throw $e;
}

// Determine if a custom filter method has been defined
// Determine if a custom sort method has been defined
$methodName = 'sort'.studly_case($name);

if (method_exists($this, $methodName)) {
Expand Down

0 comments on commit ef78c7a

Please sign in to comment.