Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix Issue 17624 - typo in Fields documentation section of https://dla…
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach committed Jul 13, 2017
1 parent f9276a7 commit 180644a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/object.d
Expand Up @@ -1645,11 +1645,15 @@ class Throwable : Object
string msg; /// A message describing the error.

/**
* The _file name and line number of the D source code corresponding with
* The _file name of the D source code corresponding with
* where the error was thrown from.
*/
string file;
size_t line; /// ditto
/**
* The _line number of the D source code corresponding with
* where the error was thrown from.
*/
size_t line;

/**
* The stack trace of where the error happened. This is an opaque object
Expand Down

0 comments on commit 180644a

Please sign in to comment.