diff options
author | Son HO | 2022-09-22 16:28:35 +0200 |
---|---|---|
committer | GitHub | 2022-09-22 16:28:35 +0200 |
commit | 0b90d3fbf2d15d88cbc4530253a1a2c77983bd91 (patch) | |
tree | 338e8e0c272eb250b10e52ee26fc9c7fc2131a9b /src | |
parent | 21a9ed3c7393199eb695db8ac93783651103d1e5 (diff) |
Update src/ExtractToFStar.ml
Diffstat (limited to '')
-rw-r--r-- | src/ExtractToFStar.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ExtractToFStar.ml b/src/ExtractToFStar.ml index d6b9437e..8b7ac244 100644 --- a/src/ExtractToFStar.ml +++ b/src/ExtractToFStar.ml @@ -1543,7 +1543,7 @@ let extract_global_decl_body (ctx : extraction_ctx) (fmt : F.formatter) F.pp_close_box fmt () (** Extract a global declaration. - However, generate its body separately from its declaration to extract the result value. + We generate the body which computes the global value separately from the value declaration itself. For example in Rust, `static X: u32 = 3;` |