From b575e15dd6e9117e8dc01fa29fe92f1e245ba669 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 5 Sep 2019 11:59:29 +0200 Subject: [PATCH] #175 - Polishing. --- src/main/asciidoc/index.adoc | 2 +- src/main/asciidoc/preface.adoc | 2 +- src/main/asciidoc/reference/mapping.adoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/asciidoc/index.adoc b/src/main/asciidoc/index.adoc index 87342cef..4390c21e 100644 --- a/src/main/asciidoc/index.adoc +++ b/src/main/asciidoc/index.adoc @@ -1,5 +1,5 @@ = Spring Data R2DBC - Reference Documentation - Mark Paluch + Mark Paluch, Jay Bryant :revnumber: {version} :revdate: {localdate} ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1600]] diff --git a/src/main/asciidoc/preface.adoc b/src/main/asciidoc/preface.adoc index c606d0b3..5dab3167 100644 --- a/src/main/asciidoc/preface.adoc +++ b/src/main/asciidoc/preface.adoc @@ -48,7 +48,7 @@ While the open source ecosystem hosts various non-blocking relational database d [[get-started:first-steps:reactive]] == What is Reactive? -The term, "`b`", refers to programming models that are built around reacting to change, availability, and processability -— network components reacting to I/O events, UI controllers reacting to mouse events, resources being made available, and others. +The term, "`reactive`", refers to programming models that are built around reacting to change, availability, and processability -— network components reacting to I/O events, UI controllers reacting to mouse events, resources being made available, and others. In that sense, non-blocking is reactive, because, instead of being blocked, we are now in the mode of reacting to notifications as operations complete or data becomes available. There is also another important mechanism that we on the Spring team associate with reactive, and that is non-blocking back pressure. diff --git a/src/main/asciidoc/reference/mapping.adoc b/src/main/asciidoc/reference/mapping.adoc index 5ff47a34..83d5e304 100644 --- a/src/main/asciidoc/reference/mapping.adoc +++ b/src/main/asciidoc/reference/mapping.adoc @@ -188,7 +188,7 @@ public class PersonWriteConverter implements Converter { public OutboundRow convert(Person source) { OutboundRow row = new OutboundRow(); - row.put("_d", SettableValue.from(source.getId())); + row.put("id", SettableValue.from(source.getId())); row.put("name", SettableValue.from(source.getFirstName())); row.put("age", SettableValue.from(source.getAge())); return row;