diff options
author | 2022-01-02 03:09:51 -0800 | |
---|---|---|
committer | 2022-01-02 03:09:51 -0800 | |
commit | 7f3384600550c65d38f6855e0fc8d919a624b31e (patch) | |
tree | f00549eb7469b3856f3ac6a296df808c8915f0fd /src/runtime.footer.js | |
parent | 4afda10b82af917fb93284e24ea41d103310f245 (diff) | |
download | bun-7f3384600550c65d38f6855e0fc8d919a624b31e.tar.gz bun-7f3384600550c65d38f6855e0fc8d919a624b31e.tar.zst bun-7f3384600550c65d38f6855e0fc8d919a624b31e.zip |
copy: replace Bun with bun (#99)
Most CLI tools have the style convention of referring to themselves in
lowercase. It is, after all, the name that users type in when using
the tool. This PR maintains that convention in bun.
"Drop the uppercase B, it's cleaner"
Diffstat (limited to 'src/runtime.footer.js')
-rw-r--r-- | src/runtime.footer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.footer.js b/src/runtime.footer.js index 334efb92a..7a309647c 100644 --- a/src/runtime.footer.js +++ b/src/runtime.footer.js @@ -1,6 +1,6 @@ // --- // Public exports from runtime -// Compatible with Bun's Runtime Environment and web browsers. +// Compatible with bun's Runtime Environment and web browsers. export var $$m = "$primordials" in globalThis ? $primordials.require : BUN_RUNTIME.$$m; export var __HMRModule = BUN_RUNTIME.__HMRModule; |