Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

suggest add space or '.' before format with Format::Microseconds #14

Closed
bluebug opened this issue Nov 19, 2024 · 2 comments
Closed

suggest add space or '.' before format with Format::Microseconds #14

bluebug opened this issue Nov 19, 2024 · 2 comments

Comments

@bluebug
Copy link

bluebug commented Nov 19, 2024

suggest add space or '.' before tss.2 like before tss.1

time.push_str(tss.2.as_str());

        if !tss.1.is_empty() {
            if !time.is_empty() {
                time.push(' ');
            }
            time.push_str(tss.1.as_str());
        }

        if !tss.2.is_empty() {
+            if !time.is_empty() {
+               time.push(' ');
+            }
            time.push_str(tss.2.as_str());
        }
@donnie4w
Copy link
Owner

@bluebug
Ok, thanks, there is a dot missing, I will correct it as soon as possible

@bluebug
Copy link
Author

bluebug commented Nov 20, 2024

v0.2.7 solved 👍

@bluebug bluebug closed this as completed Nov 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants