// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
-import { makeCallable } from "./function.js";
+import { createCallableFunction } from "./function.js";
import { getOwnPropertyDescriptor } from "./object.js";
/**
* ※ This is effectively an alias for the `Symbol::description`
* getter.
*/
-export const getSymbolDescription = makeCallable(
+export const getSymbolDescription = createCallableFunction(
getOwnPropertyDescriptor(Symbol.prototype, "description").get,
"getSymbolDescription",
);