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::{ use crate::{
coords::Coordinates, current_weater_print_params::CurrentWeatherPrintParams, coords::Coordinates, current_weather::CurrentWeather,
current_weather::CurrentWeather, current_weather_print_params::CurrentWeatherPrintParams,
}; };
pub struct CurrentWeatherPrinter { pub struct CurrentWeatherPrinter {

View File

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