Skip to content

Commit b575e15

Browse files
committed
#175 - Polishing.
1 parent a4b7e57 commit b575e15

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/asciidoc/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Spring Data R2DBC - Reference Documentation
2-
Mark Paluch
2+
Mark Paluch, Jay Bryant
33
:revnumber: {version}
44
:revdate: {localdate}
55
ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1600]]

src/main/asciidoc/preface.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ While the open source ecosystem hosts various non-blocking relational database d
4848
[[get-started:first-steps:reactive]]
4949
== What is Reactive?
5050

51-
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.
51+
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.
5252
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.
5353

5454
There is also another important mechanism that we on the Spring team associate with reactive, and that is non-blocking back pressure.

src/main/asciidoc/reference/mapping.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public class PersonWriteConverter implements Converter<Person, OutboundRow> {
188188
189189
public OutboundRow convert(Person source) {
190190
OutboundRow row = new OutboundRow();
191-
row.put("_d", SettableValue.from(source.getId()));
191+
row.put("id", SettableValue.from(source.getId()));
192192
row.put("name", SettableValue.from(source.getFirstName()));
193193
row.put("age", SettableValue.from(source.getAge()));
194194
return row;

0 commit comments

Comments
 (0)