Skip to content

Commit a102f3b

Browse files
committed
Remove trailing whitespace for all files in the repository.
1 parent 2783905 commit a102f3b

19 files changed

+710
-710
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ deploy:
184184
# Both the build and deploy steps for Emscripten are only run within the Ubuntu
185185
# configurations (not for macOS). That is controlled by conditionals within the bash
186186
# scripts because TravisCI doesn't provide much in the way of conditional logic.
187-
187+
188188
- provider: script
189189
script: test $SOLC_EMSCRIPTEN != On || (scripts/release_emscripten.sh)
190190
skip_cleanup: true

CODING_STYLE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ for (map<ComplexTypeOne, ComplexTypeTwo>::iterator i = l.begin(); i != l.end();
193193
2. Generally avoid shortening a standard form that already includes all important information:
194194
- e.g. stick to `shared_ptr<X>` rather than shortening to `ptr<X>`.
195195
3. Where there are exceptions to this (due to excessive use and clear meaning), note the change prominently and use it consistently:
196-
- e.g. `using Guard = std::lock_guard<std::mutex>;` ///< Guard is used throughout the codebase since it is clear in meaning and used commonly.
196+
- e.g. `using Guard = std::lock_guard<std::mutex>;` ///< Guard is used throughout the codebase since it is clear in meaning and used commonly.
197197
4. In general expressions should be roughly as important/semantically meaningful as the space they occupy.
198198
5. Avoid introducing aliases for types unless they are very complicated. Consider the number of items a brain can keep track of at the same time.
199199

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ contract HelloWorld {
3939
To get started with Solidity, you can use [Remix](https://remix.ethereum.org/), which is an
4040
browser-based IDE. Here are some example contracts:
4141

42-
1. [Voting](https://solidity.readthedocs.io/en/v0.4.24/solidity-by-example.html#voting)
42+
1. [Voting](https://solidity.readthedocs.io/en/v0.4.24/solidity-by-example.html#voting)
4343
2. [Blind Auction](https://solidity.readthedocs.io/en/v0.4.24/solidity-by-example.html#blind-auction)
4444
3. [Safe remote purchase](https://solidity.readthedocs.io/en/v0.4.24/solidity-by-example.html#safe-remote-purchase)
4545
4. [Micropayment Channel](https://solidity.readthedocs.io/en/v0.4.24/solidity-by-example.html#micropayment-channel)

cmake/scripts/buildinfo.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# generates BuildInfo.h
2-
#
2+
#
33
# this module expects
44
# ETH_SOURCE_DIR - main CMAKE_SOURCE_DIR
55
# ETH_DST_DIR - main CMAKE_BINARY_DIR

0 commit comments

Comments
 (0)