From 9d2d3843a52c6b525a03ec8c4112a249b621dfbc Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Tue, 27 Nov 2018 15:03:27 -0600 Subject: [PATCH] MAINT: comment cleanup. --- src/build/mod.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/build/mod.rs b/src/build/mod.rs index 79fe2c5..e31aad9 100644 --- a/src/build/mod.rs +++ b/src/build/mod.rs @@ -92,7 +92,7 @@ pub struct AssertCollector { pub failures: String, } -/// Builder handles building ucg code for a single file.. +/// Builder handles building ucg code for a single file. pub struct Builder<'a> { file: PathBuf, curr_file: Option<&'a str>, @@ -107,12 +107,10 @@ pub struct Builder<'a> { // compile time memory safety for runtime checks. However it's // acceptable in this case since I can't figure out a better way to // handle it. - /// The assets are other parsed files from import statements. They - /// are keyed by the canonicalized import path. This acts as a cache - /// so multiple imports of the same file don't have to be parsed - /// multiple times. - // FIXME(jwall): This probably needs to be running in a separate thread - // with some sort of RPC mechanism instead. + // The assets are other parsed files from import statements. They + // are keyed by the canonicalized import path. This acts as a cache + // so multiple imports of the same file don't have to be parsed + // multiple times. assets: Rc>, /// build_output is our built output. build_output: ValueMap,