Skip to content

Commit

Permalink
Fix eol issues
Browse files Browse the repository at this point in the history
Some files don't contain a line separator ('\n') at the end. Add the
missing eol.

In POSIX, all lines of text should end with a newline character by
definition. See
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html
section 3.397 for more.

See https://gist.github.com/jacknagel/1020172 for a gist of the issue.
  • Loading branch information
jacobcrigby committed Apr 23, 2014
1 parent 95d8ff4 commit 5eacf05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Android.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ local.properties
proguard/

#Log Files
*.log
*.log
2 changes: 1 addition & 1 deletion CodeIgniter.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
*/logs/!index.html
*/cache/*
*/cache/!index.html
*/cache/!.htaccess
*/cache/!.htaccess
2 changes: 1 addition & 1 deletion Composer.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ vendor/

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
# composer.lock
2 changes: 1 addition & 1 deletion Symfony2.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ app/config/parameters.ini
app/config/parameters.yml

# Composer
composer.phar
composer.phar

0 comments on commit 5eacf05

Please sign in to comment.