diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/SymbolObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/SymbolObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/SymbolObject.h b/Userland/Libraries/LibJS/Runtime/SymbolObject.h index f3db908164..a3d3adf5b4 100644 --- a/Userland/Libraries/LibJS/Runtime/SymbolObject.h +++ b/Userland/Libraries/LibJS/Runtime/SymbolObject.h @@ -23,7 +23,7 @@ public: Symbol& primitive_symbol() { return m_symbol; } const Symbol& primitive_symbol() const { return m_symbol; } - const String& description() const { return m_symbol.description(); } + String description() const { return m_symbol.description(); } bool is_global() const { return m_symbol.is_global(); } virtual Value value_of() const override |