Skip to content

Commit efb5694

Browse files
authored
fix: Correct Class name for the ClientInfo class (#854)
1 parent f0ba854 commit efb5694

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/fastly/builtins/fetch-event.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ClientInfo final : public builtins::BuiltinNoConstructor<ClientInfo> {
1818
static bool tls_client_certificate_get(JSContext *cx, unsigned argc, JS::Value *vp);
1919

2020
public:
21-
static constexpr const char *class_name = "FetchEvent";
21+
static constexpr const char *class_name = "ClientInfo";
2222

2323
enum class Slots {
2424
Address,

runtime/js-compute-runtime/builtins/client-info.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ClientInfo final : public BuiltinNoConstructor<ClientInfo> {
1515
static bool tls_client_certificate_get(JSContext *cx, unsigned argc, JS::Value *vp);
1616

1717
public:
18-
static constexpr const char *class_name = "FetchEvent";
18+
static constexpr const char *class_name = "ClientInfo";
1919

2020
enum class Slots {
2121
Address,

0 commit comments

Comments
 (0)