Typo naming

This commit is contained in:
Jorge Bolois 2023-05-26 20:30:17 +02:00
parent dbcf9437b6
commit 09df3cc6ed
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
use crate::{
coords::Coordinates, current_weater_print_params::CurrentWeatherPrintParams,
current_weather::CurrentWeather,
coords::Coordinates, current_weather::CurrentWeather,
current_weather_print_params::CurrentWeatherPrintParams,
};
pub struct CurrentWeatherPrinter {

View File

@ -1,7 +1,7 @@
mod cli;
mod coords;
mod current_weater_print_params;
mod current_weather_print_params;
mod current_weather;
mod current_weather_printer;
mod ifconfig;
@ -9,7 +9,7 @@ mod ip_api;
mod open_meteo;
use billboard::{Alignment, Billboard};
use current_weater_print_params::CurrentWeatherPrintParams;
use current_weather_print_params::CurrentWeatherPrintParams;
use std::process::exit;
use structopt::StructOpt;