Skip to content

Commit

Permalink
Change the option 2 description.
Browse files Browse the repository at this point in the history
  • Loading branch information
kentlouisetonino committed Jul 30, 2024
1 parent 44cc3e7 commit 0bb6e51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified bin/tempscale
Binary file not shown.
2 changes: 1 addition & 1 deletion src/scales/fahrenheit_description.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ void fahrenheit_description(void) {
add_new_line();
add_new_tab();
add_new_tab();
printf(" %sFahrenheit (°F) to Other Scale%s", GREEN, RESET);
printf(" %sFahrenheit (°F) to Other Scale%s", GREEN, RESET);
add_new_line();
add_new_line();
add_new_tab();
Expand Down
4 changes: 2 additions & 2 deletions src/scales/fahrenheit_option.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "../displays/ansi_color_codes.h"
#include "../displays/clear_screen.h"
#include "../displays/escape_sequence.h"
#include "celsius_description.h"
#include "check_valid_input.h"
#include "fahrenheit_description.h"

void fahrenheit_option(void) {
char *fahrenheit_string = malloc(sizeof(char) * 50);
Expand All @@ -17,7 +17,7 @@ void fahrenheit_option(void) {
add_new_line();

// Display the option description.
celsius_description();
fahrenheit_description();
add_new_line();
add_new_line();

Expand Down

0 comments on commit 0bb6e51

Please sign in to comment.