Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jun 16, 2016
1 parent e79e3dd commit a71db43
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Tracy/Debugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Debugger
{
const VERSION = '2.4-dev';

/** server modes {@link Debugger::enable()} */
/** server modes for Debugger::enable() */
const
DEVELOPMENT = FALSE,
PRODUCTION = TRUE,
Expand All @@ -32,7 +32,7 @@ class Debugger
/** @var bool whether to display debug bar in development mode */
public static $showBar = TRUE;

/** @var bool {@link Debugger::enable()} */
/** @var bool */
private static $enabled = FALSE;

/** @var string reserved memory; also prevents double rendering */
Expand All @@ -54,13 +54,13 @@ class Debugger

/********************* Debugger::dump() ****************d*g**/

/** @var int how many nested levels of array/object properties display {@link Debugger::dump()} */
/** @var int how many nested levels of array/object properties display by dump() */
public static $maxDepth = 3;

/** @var int how long strings display {@link Debugger::dump()} */
/** @var int how long strings display by dump() */
public static $maxLength = 150;

/** @var bool display location? {@link Debugger::dump()} */
/** @var bool display location by dump()? */
public static $showLocation = FALSE;

/** @deprecated */
Expand All @@ -77,7 +77,7 @@ class Debugger
/** @var string|array email(s) to which send error notifications */
public static $email;

/** {@link Debugger::log()} and {@link Debugger::fireLog()} */
/** for Debugger::log() and Debugger::fireLog() */
const
DEBUG = ILogger::DEBUG,
INFO = ILogger::INFO,
Expand Down

0 comments on commit a71db43

Please sign in to comment.