Commit c1b59bb0f5ec9e3b482026a6693905b1f9b1c6ed

Fix comment on one of ColorTree constructors
Author: xaizek
Author date (UTC): 2021-12-29 00:25
Committer name: xaizek
Committer date (UTC): 2021-12-29 00:25
Parent(s): 966fe46e4e3086e21ad93a27f591ffa2192d7dbb
Signing key: 99DC5E4DB05F6BE2
Tree: 04df8ae83d6ab412827a56f4f053bf5351f9504e
File Lines added Lines deleted
ColorTree.hpp 1 1
File ColorTree.hpp changed (mode: 100644) (index 74a282e..2456b10)
... ... public:
140 140 explicit ColorTree(Format format); explicit ColorTree(Format format);
141 141 // Constructs a leaf node with specified text and empty format. // Constructs a leaf node with specified text and empty format.
142 142 ColorTree(std::wstring text); ColorTree(std::wstring text);
143 // Constructs a leaf node with specified text specified as a literal.
143 // Constructs a leaf node with text specified as a literal.
144 144 template <std::size_t N> template <std::size_t N>
145 145 ColorTree(const wchar_t (&text)[N]) : text(text, text + N - 1) ColorTree(const wchar_t (&text)[N]) : text(text, text + N - 1)
146 146 { } { }
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/libcursed

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/libcursed

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master