Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Aug 13, 2023
1 parent 894754f commit 27134f5
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main/java/org/stellar/sdk/SorobanDataBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
* Supports building {@link SorobanTransactionData} structures with various items set to specific
* values.
*
* <p>This is recommended for when you are building {@link BumpFootprintExpirationOperation} {@link
* RestoreFootprintOperation} operations to avoid (re)building the entire data structure from
* <p>This is recommended for when you are building {@link BumpFootprintExpirationOperation} and
* {@link RestoreFootprintOperation} operations to avoid (re)building the entire data structure from
* scratch.
*/
public class SorobanDataBuilder {
Expand Down Expand Up @@ -84,7 +84,7 @@ public SorobanDataBuilder setRefundableFee(long fee) {
/**
* Sets up the resource metrics.
*
* <p>You should almost NEVER need this, as its often generated / provided to you by transaction
* <p>You should almost NEVER need this, as its often generated/provided to you by transaction
* simulation/preflight from a Soroban RPC server.
*
* @param cpuInstructions number of CPU instructions (uint32)
Expand Down Expand Up @@ -159,8 +159,6 @@ public SorobanDataBuilder setReadWrite(@Nullable Collection<LedgerKey> readWrite
}

/**
* Returns the copy of the final {@link SorobanTransactionData} built by this builder.
*
* @return the copy of the final {@link SorobanTransactionData}.
*/
public SorobanTransactionData build() {
Expand Down

0 comments on commit 27134f5

Please sign in to comment.