summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Date.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Date.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Date.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Date.h b/Userland/Libraries/LibJS/Runtime/Date.h
index ffc68faa75..1b2b0c3abc 100644
--- a/Userland/Libraries/LibJS/Runtime/Date.h
+++ b/Userland/Libraries/LibJS/Runtime/Date.h
@@ -85,7 +85,7 @@ public:
String gmt_date_string() const;
String iso_date_string() const;
- // FIXME: One day, implement real locale support. Until then, everyone gets what the Clock MenuApplet displays.
+ // FIXME: One day, implement real locale support. Until then, everyone gets what the Clock Applet displays.
String locale_date_string() const { return m_datetime.to_string("%Y-%m-%d"); }
String locale_string() const { return m_datetime.to_string(); }
String locale_time_string() const { return m_datetime.to_string("%H:%M:%S"); }