From 5b8f8f587d72f70d0b170036950ec8e809ec2854 Mon Sep 17 00:00:00 2001 From: Temirkhan Myrzamadi Date: Wed, 4 Sep 2019 14:04:30 +0600 Subject: [PATCH] Fix the PhotoSize type --- src/core/types/photo_size.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/types/photo_size.rs b/src/core/types/photo_size.rs index 003aa1d9..8a0a094b 100644 --- a/src/core/types/photo_size.rs +++ b/src/core/types/photo_size.rs @@ -2,6 +2,6 @@ pub struct PhotoSize { pub file_id: String, pub width: i32, - pub heigth: i32, + pub height: i32, pub file_size: Option, }