1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:27:44 +00:00

LibLine: Make the comments follow the project style

This commit is contained in:
AnotherTest 2020-05-23 03:19:48 +04:30 committed by Andreas Kling
parent 3c3edf5831
commit 909ac2a558
6 changed files with 81 additions and 83 deletions

View file

@ -35,7 +35,7 @@
namespace Line {
// FIXME: These objects are pretty heavy since they store two copies of text
// somehow get rid of one
// somehow get rid of one.
struct CompletionSuggestion {
private:
struct ForSearchTag {
@ -44,7 +44,7 @@ private:
public:
static constexpr ForSearchTag ForSearch {};
// intentionally not explicit (allows suggesting bare strings)
// Intentionally not explicit. (To allow suggesting bare strings)
CompletionSuggestion(const String& completion)
: CompletionSuggestion(completion, "", {})
{