Skip to content

Commit 1a6337c

Browse files
cknittcristianoc
authored andcommitted
staled -> stale
1 parent bde2435 commit 1a6337c

8 files changed

+11
-11
lines changed

Changes.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ This is a minor bug fix release for 8.3.0
368368
369369
- #4679 better error message for nonrec GADT
370370
371-
- #4671, #4678 better strategies to remove staled output for the build system
371+
- #4671, #4678 better strategies to remove stale output for the build system
372372
373373
- #4676 (internal) add Config.syntax_kind so that some changes in super_errors can be made upstream
374374
@@ -606,7 +606,7 @@ This is a minor bug fix release for 8.3.0
606606
- #4190 (internal) remove bsdep which is not used
607607
- #4188 better encoding around internals for performance and size
608608
- #4155 fix React PPX regressions from 7.1.0 which caused a type error when writing recursive components.
609-
- #4185 remove staled tasks.json in bsb themes for vscode, leave it for users to keep it up to date
609+
- #4185 remove stale tasks.json in bsb themes for vscode, leave it for users to keep it up to date
610610
- #4159 #4161 #4182 improve the startup time, reducing both the size of cmi and cmj
611611
- #4179 (internal) remove bsppx, use "bsc.exe -as-ppx" for editor tooling
612612
- #4171 add a warning for using `fun%raw`, use `[%raw]` directly
@@ -844,7 +844,7 @@ Fixes
844844
845845
Fixes
846846
847-
- #3615 pruning staled build artifacts in bsb, more robust to file changes (moving files around, renaming)
847+
- #3615 pruning stale build artifacts in bsb, more robust to file changes (moving files around, renaming)
848848
849849
- #3609, #3914 Fix a fatal error in code generation
850850
- #3598, #3595 Fix code generation when toplevel binding is partial match (edge case)
@@ -1313,7 +1313,7 @@ Features:
13131313
- #2112, introduced a key `suffix`, so that user can
13141314
choose `suffix : ".bs.js"`
13151315
- #2138, in combination of `.bs.js` suffix and `in-source` build,
1316-
bsb is able to remove staled build artifact
1316+
bsb is able to remove stale build artifact
13171317
- #2091 bsc xx.cmi will print xx.mli so users can generate
13181318
mli in the beginning. `bsc -output-re xx.cmi` will print
13191319
it in reason syntax

jscomp/bsb/bsb_clean.mli

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
2424

2525
(** clean bsc generated artifacts.
26-
TODO: clean staled in source js artifacts
26+
TODO: clean stale in source js artifacts
2727
*)
2828

2929
val clean_bs_deps : string -> unit

jscomp/core/lam_pass_collect.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ let annotate (meta : Lam_stats.t) rec_flag (k : Ident.t) (arity : Lam_arity.t)
3737
(FunctionId { arity; lambda = Some (lambda, rec_flag) })
3838
(* see #3609
3939
we have to update since bounded function lambda
40-
may contain staled unbounded varaibles
40+
may contain stale unbounded varaibles
4141
*)
4242
(* match Hash_ident.find_opt meta.ident_tbl k with
4343
| None -> (** FIXME: need do a sanity check of arity is NA or Determin(_,[],_) *)

lib/4.06.1/rescript.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10746,7 +10746,7 @@ module Bsb_clean : sig
1074610746
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
1074710747

1074810748
(** clean bsc generated artifacts.
10749-
TODO: clean staled in source js artifacts
10749+
TODO: clean stale in source js artifacts
1075010750
*)
1075110751

1075210752
val clean_bs_deps : string -> unit

lib/4.06.1/unstable/js_compiler.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -246782,7 +246782,7 @@ let annotate (meta : Lam_stats.t) rec_flag (k : Ident.t) (arity : Lam_arity.t)
246782246782
(FunctionId { arity; lambda = Some (lambda, rec_flag) })
246783246783
(* see #3609
246784246784
we have to update since bounded function lambda
246785-
may contain staled unbounded varaibles
246785+
may contain stale unbounded varaibles
246786246786
*)
246787246787
(* match Hash_ident.find_opt meta.ident_tbl k with
246788246788
| None -> (** FIXME: need do a sanity check of arity is NA or Determin(_,[],_) *)

lib/4.06.1/unstable/js_playground_compiler.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -246782,7 +246782,7 @@ let annotate (meta : Lam_stats.t) rec_flag (k : Ident.t) (arity : Lam_arity.t)
246782246782
(FunctionId { arity; lambda = Some (lambda, rec_flag) })
246783246783
(* see #3609
246784246784
we have to update since bounded function lambda
246785-
may contain staled unbounded varaibles
246785+
may contain stale unbounded varaibles
246786246786
*)
246787246787
(* match Hash_ident.find_opt meta.ident_tbl k with
246788246788
| None -> (** FIXME: need do a sanity check of arity is NA or Determin(_,[],_) *)

lib/4.06.1/whole_compiler.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -254260,7 +254260,7 @@ let annotate (meta : Lam_stats.t) rec_flag (k : Ident.t) (arity : Lam_arity.t)
254260254260
(FunctionId { arity; lambda = Some (lambda, rec_flag) })
254261254261
(* see #3609
254262254262
we have to update since bounded function lambda
254263-
may contain staled unbounded varaibles
254263+
may contain stale unbounded varaibles
254264254264
*)
254265254265
(* match Hash_ident.find_opt meta.ident_tbl k with
254266254266
| None -> (** FIXME: need do a sanity check of arity is NA or Determin(_,[],_) *)

rescript

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ if (
313313
}
314314
});
315315
} else {
316-
console.warn(`Another build detected or staled lockfile ${lockFileName}`);
316+
console.warn(`Another build detected or stale lockfile ${lockFileName}`);
317317
// racing magic code
318318
process.exit(133);
319319
}

0 commit comments

Comments
 (0)