aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/unorderedLists.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/format/unorderedLists.kt')
-rw-r--r--core/testdata/format/unorderedLists.kt36
1 files changed, 36 insertions, 0 deletions
diff --git a/core/testdata/format/unorderedLists.kt b/core/testdata/format/unorderedLists.kt
new file mode 100644
index 000000000..a594b89b6
--- /dev/null
+++ b/core/testdata/format/unorderedLists.kt
@@ -0,0 +1,36 @@
+/**
+ * Usage summary:
+ *
+ * - Rinse
+ * - Repeat
+ *
+ * Usage instructions:
+ *
+ * - [Bar.rinse] to rinse
+ * - Alter any rinse options _(optional)_
+ * - To repeat; [Bar.repeat]
+ * - Can reconfigure options:
+ * - Soap
+ * - Elbow Grease
+ * - Bleach
+ *
+ * Rinse options:
+ *
+ * - [Bar.useSoap]
+ * - _recommended_
+ *
+ * - [Bar.useElbowGrease]
+ * - _warning: requires effort_
+ *
+ * - [Bar.useBleach]
+ * - __use with caution__
+ *
+ */
+class Bar {
+ fun rinse() = Unit
+ fun repeat() = Unit
+
+ var useSoap = false
+ var useElbowGrease = false
+ var useBleach = false
+}