From 130465f689582d25b936d4514e9c2da7e7dd8695 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Fri, 11 Oct 2024 17:43:29 -0600 Subject: [PATCH] Correct Unterminated Blocks Issue gh-940 --- src/docs/asciidoc/index.adoc | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/docs/asciidoc/index.adoc b/src/docs/asciidoc/index.adoc index ecd28f75..bdf94f24 100644 --- a/src/docs/asciidoc/index.adoc +++ b/src/docs/asciidoc/index.adoc @@ -1094,16 +1094,13 @@ Fields annotated with `@DnAttribute` are automatically populated with the approp Consider a class with the following annotation: -[tabs] -====== -Java:: -+ +==== [source,java,role="primary"] ---- @DnAttribute(name="uid") String uid; ---- -===== +==== and a DN like the following: @@ -1123,10 +1120,7 @@ Only fields of type `String` can be annotated with `@DnAttribute`. Other types a You can alternatively supply an index like so: -[tabs] -====== -Java:: -+ +==== [source,java,role="primary"] ---- @DnAttribute(index=1) @@ -1135,7 +1129,7 @@ String uid; @DnAttribute(index=0) String department; ---- -===== +==== which is handy for DNs that have multiple components: