diff options
author | 2020-03-31 17:48:41 +0200 | |
---|---|---|
committer | 2020-03-31 17:48:41 +0200 | |
commit | 327347501c78a1c8e55a39fe1b5d54d7c2fcbcab (patch) | |
tree | 3100782d2dfb19dea456402d6615ec340e97d9b7 /examples/pokedex/src/main.rs | |
parent | 291dc728a42c6e888ca6d97eea0f3308591b15a5 (diff) | |
parent | 990b4aa0b75d069c08e5f4018f9430a70a394eb7 (diff) | |
download | iced-327347501c78a1c8e55a39fe1b5d54d7c2fcbcab.tar.gz iced-327347501c78a1c8e55a39fe1b5d54d7c2fcbcab.tar.bz2 iced-327347501c78a1c8e55a39fe1b5d54d7c2fcbcab.zip |
Merge pull request #248 from hecrj/feature/container-padding
Implement `padding` support for `Container`
Diffstat (limited to 'examples/pokedex/src/main.rs')
-rw-r--r-- | examples/pokedex/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pokedex/src/main.rs b/examples/pokedex/src/main.rs index 4449b901..aec05287 100644 --- a/examples/pokedex/src/main.rs +++ b/examples/pokedex/src/main.rs @@ -225,7 +225,7 @@ enum Error { impl From<reqwest::Error> for Error { fn from(error: reqwest::Error) -> Error { - dbg!(&error); + dbg!(error); Error::APIError } |