From 1e647cee5143dbf9f4e3464f6cd2f4a5f3b3fbf1 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Mon, 11 Mar 2024 05:46:19 -0700 Subject: [PATCH] readme: mention hosted docs --- README.md | 4 ++-- src/io/test/datastream.cpp | 30 +++++++++++++++--------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index e075a32..43d00cf 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ Hosts: [outfoxxed's gitea], [github] [outfoxxed's gitea]: https://git.outfoxxed.me/outfoxxed/quickshell [github]: https://github.com/outfoxxed/quickshell -Documentation can be built from the [quickshell-docs](https://git.outfoxxed.me/outfoxxed/quickshell-docs) repo, -though is currently pretty lacking. +Documentation available at [quickshell.outfoxxed.me](https://quickshell.outfoxxed.me) or +can be built from the [quickshell-docs](https://git.outfoxxed.me/outfoxxed/quickshell-docs) repo. Some fully working examples can be found in the [quickshell-examples](https://git.outfoxxed.me/outfoxxed/quickshell-examples) repo. diff --git a/src/io/test/datastream.cpp b/src/io/test/datastream.cpp index ea7f300..c83d8ad 100644 --- a/src/io/test/datastream.cpp +++ b/src/io/test/datastream.cpp @@ -19,25 +19,25 @@ void TestSplitParser::splits_data() { // NOLINT // NOLINTBEGIN // clang-format off - QTest::addRow("simple") << "-" - << "foo" << "-" - << QList("foo") << ""; + QTest::addRow("simple") << "-" + << "foo" << "-" + << QList("foo") << ""; - QTest::addRow("multiple") << "-" - << "foo" << "-bar-baz-" - << QList({ "foo", "bar", "baz" }) << ""; + QTest::addRow("multiple") << "-" + << "foo" << "-bar-baz-" + << QList({ "foo", "bar", "baz" }) << ""; - QTest::addRow("incomplete") << "-" - << "foo" << "-bar-baz" - << QList({ "foo", "bar" }) << "baz"; + QTest::addRow("incomplete") << "-" + << "foo" << "-bar-baz" + << QList({ "foo", "bar" }) << "baz"; - QTest::addRow("longsplit") << "12345" - << "foo1234" << "5bar12345" - << QList({ "foo", "bar" }) << ""; + QTest::addRow("longsplit") << "12345" + << "foo1234" << "5bar12345" + << QList({ "foo", "bar" }) << ""; - QTest::addRow("longsplit-incomplete") << "123" - << "foo12" << "3bar123baz" - << QList({ "foo", "bar" }) << "baz"; + QTest::addRow("longsplit-incomplete") << "123" + << "foo12" << "3bar123baz" + << QList({ "foo", "bar" }) << "baz"; // clang-format on // NOLINTEND }