This is an automated email from the ASF dual-hosted git repository.

kkarantasis pushed a commit to branch 2.4
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.4 by this push:
     new 22956b3  MINOR: Fix code example reference to SchemaBuilder call in 
Connect's documentation (#3029)
22956b3 is described below

commit 22956b351fde0219b9a0efebdc3a6d1a30b9cce5
Author: Scott <[email protected]>
AuthorDate: Sat Mar 28 21:34:07 2020 -0400

    MINOR: Fix code example reference to SchemaBuilder call in Connect's 
documentation (#3029)
    
    Simple doc fix in a code snippet in connect.html
    
    Co-authored-by: Scott Ferguson <[email protected]>
    
    Reviewers: Ewen Cheslack-Postava <[email protected]>, Konstantine Karantasis 
<[email protected]>
---
 docs/connect.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/connect.html b/docs/connect.html
index 8101da9..30750b3 100644
--- a/docs/connect.html
+++ b/docs/connect.html
@@ -489,7 +489,7 @@
     Schema schema = SchemaBuilder.struct().name(NAME)
         .field("name", Schema.STRING_SCHEMA)
         .field("age", Schema.INT_SCHEMA)
-        .field("admin", new 
SchemaBuilder.boolean().defaultValue(false).build())
+        .field("admin", SchemaBuilder.bool().defaultValue(false).build())
         .build();
 
     Struct struct = new Struct(schema)

Reply via email to