makeopensource / mOS

MakeOpenSource Operating System
GNU General Public License v3.0
4 stars 8 forks source link

ran make format #27

Closed Sploder12 closed 1 year ago

Sploder12 commented 1 year ago

Description

I ran make format and fixed a comment that got squished.

Issue #

Type of change

Testing

ran tests

Checklist:

emilkovacev commented 1 year ago

Out of curiosity, what happened with the comment? I hope clang-format didn't remove it! Good to see that the check passed on correctly-formatted code :)

Sploder12 commented 1 year ago

Out of curiosity, what happened with the comment?

The comment was from serial.c, the comment was

// bit 0: something something
// bit 1: blah blah blah
// ...

But it became

// bit 0: something something bit 1: blah blah
// blah ...
emilkovacev commented 1 year ago

That may be because of an option I enabled, I may turn that off in that case

emilkovacev commented 1 year ago

Never mind, maybe that's part of style llvm standards? Hopefully it doesn't interfere too much in the future, if it comes up again I'll take a look