Skip to content

Commit 4824ebd

Browse files
authored
Merge pull request #4416 from cknitt/fix-typo
Fix typo (unrecorgnized primitive -> unrecognized primitive)
2 parents 599df42 + 1ef22d6 commit 4824ebd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

jscomp/core/lam_convert.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ let convert (exports : Set_ident.t) (lam : Lambda.lambda) : Lam.t * Lam_module_i
586586
| "#fn_method" -> Pjs_fn_method
587587
| "#unsafe_downgrade" -> Pjs_unsafe_downgrade {name = Ext_string.empty; loc ; setter = false}
588588
| _ -> Location.raise_errorf ~loc
589-
"@{<error>Error:@} internal error, using unrecorgnized primitive %s" s
589+
"@{<error>Error:@} internal error, using unrecognized primitive %s" s
590590
in
591591
if primitive = Pfull_apply then
592592
match args with

lib/4.06.1/unstable/js_compiler.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396573,7 +396573,7 @@ let convert (exports : Set_ident.t) (lam : Lambda.lambda) : Lam.t * Lam_module_i
396573396573
| "#fn_method" -> Pjs_fn_method
396574396574
| "#unsafe_downgrade" -> Pjs_unsafe_downgrade {name = Ext_string.empty; loc ; setter = false}
396575396575
| _ -> Location.raise_errorf ~loc
396576-
"@{<error>Error:@} internal error, using unrecorgnized primitive %s" s
396576+
"@{<error>Error:@} internal error, using unrecognized primitive %s" s
396577396577
in
396578396578
if primitive = Pfull_apply then
396579396579
match args with

lib/4.06.1/unstable/js_refmt_compiler.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396573,7 +396573,7 @@ let convert (exports : Set_ident.t) (lam : Lambda.lambda) : Lam.t * Lam_module_i
396573396573
| "#fn_method" -> Pjs_fn_method
396574396574
| "#unsafe_downgrade" -> Pjs_unsafe_downgrade {name = Ext_string.empty; loc ; setter = false}
396575396575
| _ -> Location.raise_errorf ~loc
396576-
"@{<error>Error:@} internal error, using unrecorgnized primitive %s" s
396576+
"@{<error>Error:@} internal error, using unrecognized primitive %s" s
396577396577
in
396578396578
if primitive = Pfull_apply then
396579396579
match args with

lib/4.06.1/whole_compiler.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400056,7 +400056,7 @@ let convert (exports : Set_ident.t) (lam : Lambda.lambda) : Lam.t * Lam_module_i
400056400056
| "#fn_method" -> Pjs_fn_method
400057400057
| "#unsafe_downgrade" -> Pjs_unsafe_downgrade {name = Ext_string.empty; loc ; setter = false}
400058400058
| _ -> Location.raise_errorf ~loc
400059-
"@{<error>Error:@} internal error, using unrecorgnized primitive %s" s
400059+
"@{<error>Error:@} internal error, using unrecognized primitive %s" s
400060400060
in
400061400061
if primitive = Pfull_apply then
400062400062
match args with

0 commit comments

Comments
 (0)