diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-09-19 22:25:44 +0300 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-09-19 22:25:44 +0300 |
commit | 54dee60b9cde7fc1fd808b19bc922e235fd90c04 (patch) | |
tree | bd4c7f1b5506960c2742df334d37134cde83d5b9 /test/data | |
parent | 455d74a6a6245969ebd7ec20071b691ed20a2628 (diff) | |
download | dokka-54dee60b9cde7fc1fd808b19bc922e235fd90c04.tar.gz dokka-54dee60b9cde7fc1fd808b19bc922e235fd90c04.tar.bz2 dokka-54dee60b9cde7fc1fd808b19bc922e235fd90c04.zip |
Update tests to work with RichString.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/comments/emptySection.kt | 2 | ||||
-rw-r--r-- | test/data/comments/emptySectionOnOneLine.kt | 2 | ||||
-rw-r--r-- | test/data/comments/multilineSection.kt | 2 | ||||
-rw-r--r-- | test/data/comments/section1.kt | 2 | ||||
-rw-r--r-- | test/data/comments/section2.kt | 4 | ||||
-rw-r--r-- | test/data/comments/sectionOnOneLine.kt | 2 | ||||
-rw-r--r-- | test/data/comments/sectionWithBracedLabel.kt | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/test/data/comments/emptySection.kt b/test/data/comments/emptySection.kt index 0e618b2a..7112c578 100644 --- a/test/data/comments/emptySection.kt +++ b/test/data/comments/emptySection.kt @@ -1,6 +1,6 @@ /** * Summary - * $one + * $one: */ val property = "test"
\ No newline at end of file diff --git a/test/data/comments/emptySectionOnOneLine.kt b/test/data/comments/emptySectionOnOneLine.kt index 4bb6c6f6..b0d5defd 100644 --- a/test/data/comments/emptySectionOnOneLine.kt +++ b/test/data/comments/emptySectionOnOneLine.kt @@ -1,2 +1,2 @@ -/** Summary $one*/ +/** Summary $one:*/ val property = "test"
\ No newline at end of file diff --git a/test/data/comments/multilineSection.kt b/test/data/comments/multilineSection.kt index be83b641..514348cd 100644 --- a/test/data/comments/multilineSection.kt +++ b/test/data/comments/multilineSection.kt @@ -1,6 +1,6 @@ /** * Summary - * $one + * $one: * line one * line two */ diff --git a/test/data/comments/section1.kt b/test/data/comments/section1.kt index 0a27d394..e4c9adf4 100644 --- a/test/data/comments/section1.kt +++ b/test/data/comments/section1.kt @@ -1,5 +1,5 @@ /** * Summary - * $one section one + * $one: section one */ val property = "test"
\ No newline at end of file diff --git a/test/data/comments/section2.kt b/test/data/comments/section2.kt index a34aa853..e0a35551 100644 --- a/test/data/comments/section2.kt +++ b/test/data/comments/section2.kt @@ -1,6 +1,6 @@ /** * Summary - * $one section one - * $two section two + * $one: section one + * $two: section two */ val property = "test"
\ No newline at end of file diff --git a/test/data/comments/sectionOnOneLine.kt b/test/data/comments/sectionOnOneLine.kt index cab5c69c..8bd3dd64 100644 --- a/test/data/comments/sectionOnOneLine.kt +++ b/test/data/comments/sectionOnOneLine.kt @@ -1,2 +1,2 @@ -/** Summary $one same line */ +/** Summary $one: same line */ val property = "test"
\ No newline at end of file diff --git a/test/data/comments/sectionWithBracedLabel.kt b/test/data/comments/sectionWithBracedLabel.kt index 306917ec..aa8dbfe6 100644 --- a/test/data/comments/sectionWithBracedLabel.kt +++ b/test/data/comments/sectionWithBracedLabel.kt @@ -1,5 +1,5 @@ /** * Summary - * ${this.label.is.really.long} section one + * ${this.label.is.really.long}: section one */ val property = "test"
\ No newline at end of file |