From 080badd3f226fbd1d29a0b025d656ff9af420d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Jeglinsky?= Date: Mon, 18 Mar 2024 16:19:08 +0100 Subject: [PATCH] Fix variable in code sample (#737) --- java/cds-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/cds-data.md b/java/cds-data.md index e8ace6745..4bc5731a4 100644 --- a/java/cds-data.md +++ b/java/cds-data.md @@ -425,7 +425,7 @@ Following example uses accessor interfaces that have been generated with the def author.setName("Emily Brontë"); Books book = Books.create(); - book.setAuthor(authors); + book.setAuthor(author); book.setTitle("Wuthering Heights"); ```