diff --git a/code/modules/food_and_drinks/kitchen_machinery/microwave.dm b/code/modules/food_and_drinks/kitchen_machinery/microwave.dm
index f62976fc3303..f3955637de1d 100644
--- a/code/modules/food_and_drinks/kitchen_machinery/microwave.dm
+++ b/code/modules/food_and_drinks/kitchen_machinery/microwave.dm
@@ -383,7 +383,7 @@
RegisterSignal(tocook, COMSIG_PARENT_QDELETING, PROC_REF(clear_cooking))
target.add_overlay(ration_overlay)
addtimer(CALLBACK(src, .proc/cook), 100)
- visable_message("\the [target] rapidly begins cooking...")
+ visible_message("\the [target] rapidly begins cooking...")
playsound(src, 'sound/items/cig_light.ogg', 50, 1)
moveToNullspace()
@@ -395,10 +395,10 @@
/obj/item/ration_heater/proc/cook()
var/cookturf = get_turf(tocook)
- tocook.visable_message("\the [src] lets out a final hiss...")
+ tocook.visible_message("\the [src] lets out a final hiss...")
playsound(tocook, 'sound/items/cig_snuff.ogg', 50, 1)
if(istype(tocook, /obj/item/reagent_containers/food) || istype(tocook, /obj/item/grown))
- tocook.visable_message("\the [tocook] is done warming up!")
+ tocook.visible_message("\the [tocook] is done warming up!")
tocook.microwave_act()
clear_cooking()
if(uses == 0)