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
commit 909ac2a558
Notes: sideshowbarker 2024-07-19 06:13:52 +09:00
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, "", {})
{