From 09df3cc6edfa62a2534697af9c08f77eb27739f5 Mon Sep 17 00:00:00 2001 From: Jorge Bolois Date: Fri, 26 May 2023 20:30:17 +0200 Subject: [PATCH] Typo naming --- ...weater_print_params.rs => current_weather_print_params.rs} | 0 src/current_weather_printer.rs | 4 ++-- src/main.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/{current_weater_print_params.rs => current_weather_print_params.rs} (100%) diff --git a/src/current_weater_print_params.rs b/src/current_weather_print_params.rs similarity index 100% rename from src/current_weater_print_params.rs rename to src/current_weather_print_params.rs diff --git a/src/current_weather_printer.rs b/src/current_weather_printer.rs index 27c4972..356aeaf 100644 --- a/src/current_weather_printer.rs +++ b/src/current_weather_printer.rs @@ -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 { diff --git a/src/main.rs b/src/main.rs index 7dab1a8..648d959 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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;