Skip to content

Commit

Permalink
Clarify text in javadocs (#2870)
Browse files Browse the repository at this point in the history
* Fix a couple of typos in docs

Signed-off-by: Antony Denyer <git@antonydenyer.co.uk>

* Fix punctuation

Signed-off-by: Antony Denyer <git@antonydenyer.co.uk>

Co-authored-by: Sally MacFarlane <sally.macfarlane@consensys.net>
  • Loading branch information
antonydenyer and macfarla committed Oct 13, 2021
1 parent 3996da8 commit bfd4aa3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Calculated : ${currentHash}
tasks.register('checkAPIChanges', FileStateChecker) {
description = "Checks that the API for the Plugin-API project does not change without deliberate thought"
files = sourceSets.main.allJava.files
knownHash = 'nYb32ASSettoae0o+E+aOhGv7BvkRTXWr8/PlWlWmEA='
knownHash = 'Z78NXPRIv33CBOfuUaAfgEr55ZrmxDWqVT8DVJ+FxA4='
}
check.dependsOn('checkAPIChanges')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@

package org.hyperledger.besu.plugin.services;

import org.hyperledger.besu.plugin.BesuContext;

/**
* All services that can be resolved via {@link BesuContext#getService(Class)} must implement {@link
* BesuService}
*/
public interface BesuService {}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* This service allows plugins to decide who you should connect to and what you should send them.
*
* <p>Currently there are two hooks available; connection permissioning and message permissioning.
* <p>Currently, there are two hooks available: connection permissioning and message permissioning.
*
* <ul>
* <li><b>Connection permissioning</b> - checks if inbound and outbound connections to peers are
Expand Down

0 comments on commit bfd4aa3

Please sign in to comment.