Skip to content

Commit 130465f

Browse files
committed
Correct Unterminated Blocks
Issue gh-940
1 parent a786687 commit 130465f

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/docs/asciidoc/index.adoc

+4-10
Original file line numberDiff line numberDiff line change
@@ -1094,16 +1094,13 @@ Fields annotated with `@DnAttribute` are automatically populated with the approp
10941094

10951095
Consider a class with the following annotation:
10961096

1097-
[tabs]
1098-
======
1099-
Java::
1100-
+
1097+
====
11011098
[source,java,role="primary"]
11021099
----
11031100
@DnAttribute(name="uid")
11041101
String uid;
11051102
----
1106-
=====
1103+
====
11071104

11081105
and a DN like the following:
11091106

@@ -1123,10 +1120,7 @@ Only fields of type `String` can be annotated with `@DnAttribute`. Other types a
11231120

11241121
You can alternatively supply an index like so:
11251122

1126-
[tabs]
1127-
======
1128-
Java::
1129-
+
1123+
====
11301124
[source,java,role="primary"]
11311125
----
11321126
@DnAttribute(index=1)
@@ -1135,7 +1129,7 @@ String uid;
11351129
@DnAttribute(index=0)
11361130
String department;
11371131
----
1138-
=====
1132+
====
11391133

11401134
which is handy for DNs that have multiple components:
11411135

0 commit comments

Comments
 (0)