Skip to content

Commit d2afd4d

Browse files
committed
Fix whitespace in non-rust files
1 parent a6cefa2 commit d2afd4d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

objc/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: rust
22
rust:
3-
- stable
3+
- stable
44
- nightly
55
os:
66
- osx

objc/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
* C types are now used from `std::os::raw` rather than `libc`. This means
8585
`Encode` may not be implemented for `libc` types; switch them to the
8686
`std::os::raw` equivalents instead. This avoids an issue that would arise
87-
from simultaneously using different versions of the libc crate.
87+
from simultaneously using different versions of the libc crate.
8888

8989
* Dynamic messaging was moved into the `Message` trait; instead of
9090
`().send(obj, sel!(description))`, use
@@ -110,7 +110,7 @@
110110
### Fixed
111111

112112
* Corrected alignment of ivars in `ClassDecl`; declared classes may now have a
113-
smaller size.
113+
smaller size.
114114

115115
* With the `"exception"` or `"verify_message"` feature enabled, panics from
116116
`msg_send!` will now be triggered from the line and file where the macro is

objc/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ documentation = "http://ssheldon.github.io/rust-objc/objc/"
1212
license = "MIT"
1313

1414
exclude = [
15-
".gitignore",
16-
".travis.yml",
17-
"doc.sh",
18-
"travis_install.sh",
19-
"travis_test.sh",
20-
"tests-ios/**",
21-
]
15+
".gitignore",
16+
".travis.yml",
17+
"doc.sh",
18+
"travis_install.sh",
19+
"travis_test.sh",
20+
"tests-ios/**",
21+
]
2222

2323
[features]
2424
exception = ["objc_exception"]

objc_encode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ documentation = "http://ssheldon.github.io/rust-objc/objc_encode/"
1313
license = "MIT"
1414

1515
exclude = [
16-
".gitignore",
16+
".gitignore",
1717
]

0 commit comments

Comments
 (0)