Edit render time

This commit is contained in:
BitHeaven 2024-03-22 14:35:10 +05:00
parent a6ab0d0945
commit ce4204ed49
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ pub const FOOTER_HTML: &str = r#"
</main>
<footer>
<hr>
Render time: RENDER_TIMEns. Made by BitHeaven.
Render time: RENDER_TIME&micro;s. Made by BitHeaven.
</footer>
</body>
</html>

View File

@ -559,5 +559,5 @@ fn time_ns() -> u128 {
SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
.as_millis() as u128
.as_micros()
}