Skip to content

Commit

Permalink
Small formatting fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Bair <rbair23@users.noreply.github.com>
  • Loading branch information
rbair23 committed Jun 28, 2024
1 parent df22e23 commit cbe81a7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pbj-core/gradle/scripts/clear-gradle-cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
SCRIPT_PATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 || exit ; pwd -P )"

{
cd $SCRIPT_PATH/../..
cd "$SCRIPT_PATH"/../..

pkill -9 -f gradle

Expand Down
11 changes: 7 additions & 4 deletions pbj-core/pbj-grpc-helidon-config/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# pbj-grpc-helidon-config

This project contains just the configuration definition for the `pbj-grpc-helidon` module.
This project contains just the configuration definition for the
`pbj-grpc-helidon` module.

Helidon modules require a "config blueprint". An annotation processor takes that "blueprint" and generates some
metadata in META-INF and some code. The module then needs to compile against the generated code. Since Gradle is not
capable of doing this in a single build, we have to split the configuration into a separate module.
Helidon modules require a "config blueprint". An annotation processor takes that
"blueprint" and generates some metadata in META-INF and some code. The module
then needs to compile against the generated code. Since Gradle is not capable of
doing this in a single build, we have to split the configuration into a separate
module.
2 changes: 1 addition & 1 deletion pbj-core/pbj-grpc-helidon/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PBJ GRPC Helidon

This project produces a module for Helidon that enables native support for PBJ
gRPC services.
gRPC services.
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,8 @@ public interface ServerStreamingMethod<T, R> {
}

/**
* A function that handles a bidirectional streaming gRPC service method. Many messages are received from the client,
* and many responses are sent back to the client.
* A function that handles a bidirectional streaming gRPC service method. Many messages are received from the
* client, and many responses are sent back to the client.
*
* @param <T> The type of the request message.
* @param <R> The type of the response message.
Expand Down

0 comments on commit cbe81a7

Please sign in to comment.