-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All files used a mishmash of spaces and tabs to indent. Enforced 2 sp…
…ace indentation in all source files. Removed all trailing spaces. Wrapped using statements at 120 characters instead of . Added a space between a comment and the text of the comment in a few places. This doesn't affect functionality in any way so there won't be a new release for this change.
- Loading branch information
Showing
11 changed files
with
817 additions
and
821 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
macro_rules! to_val( | ||
($tval:expr) => ( | ||
match $tval { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ mod toml; | |
mod util; | ||
mod objects; | ||
pub mod parser; | ||
mod primitives; | ||
mod primitives; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.