diff --git a/docs/src/main/paradox/native-image.md b/docs/src/main/paradox/native-image.md
index b5ea31e6..d5dce223 100644
--- a/docs/src/main/paradox/native-image.md
+++ b/docs/src/main/paradox/native-image.md
@@ -1,7 +1,7 @@
 # Building Native Images
 
-Building native images with Akka HTTP is supported out of the box for the event sourced journal, snapshot store and 
-durable state store and databases:
+Building native images with Akka Persistence R2DBC is supported out of the box for the event sourced journal, snapshot store and 
+durable state store with the following databases:
 
 * H2 (inmem and file)
 * Postgres
diff --git a/native-image-tests/src/main/resources/application-h2-file.conf b/native-image-tests/src/main/resources/application-h2-file.conf
index 3d7bd0c8..0c68654a 100644
--- a/native-image-tests/src/main/resources/application-h2-file.conf
+++ b/native-image-tests/src/main/resources/application-h2-file.conf
@@ -6,4 +6,4 @@ akka.persistence.r2dbc.connection-factory = ${akka.persistence.r2dbc.h2}
 akka.persistence.r2dbc.connection-factory = {
   protocol = "file"
   database = "/tmp/test-h2-database"
-}
\ No newline at end of file
+}
diff --git a/native-image-tests/src/main/resources/application-postgres.conf b/native-image-tests/src/main/resources/application-postgres.conf
index 9987ed55..6ae182fe 100644
--- a/native-image-tests/src/main/resources/application-postgres.conf
+++ b/native-image-tests/src/main/resources/application-postgres.conf
@@ -2,4 +2,4 @@ akka.persistence.journal.plugin = "akka.persistence.r2dbc.journal"
 akka.persistence.snapshot-store.plugin = "akka.persistence.r2dbc.snapshot"
 akka.persistence.state.plugin = "akka.persistence.r2dbc.state"
 
-akka.persistence.r2dbc.connection-factory = ${akka.persistence.r2dbc.postgres}
\ No newline at end of file
+akka.persistence.r2dbc.connection-factory = ${akka.persistence.r2dbc.postgres}
diff --git a/native-image-tests/src/main/resources/application.conf b/native-image-tests/src/main/resources/application.conf
index c20941bf..8e21e2ad 100644
--- a/native-image-tests/src/main/resources/application.conf
+++ b/native-image-tests/src/main/resources/application.conf
@@ -7,4 +7,4 @@ akka.persistence.r2dbc.connection-factory = {
   # overrides for default values from the 'akka.persistence.r2dbc.h2' config block
   protocol = "mem"
   database = "mydb"
-}
\ No newline at end of file
+}