Skip to content

Commit

Permalink
docs: Fix a document error.
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed May 14, 2019
1 parent dcbcc97 commit 34edeee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/stellar/sdk/ManageBuyOfferOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ public static class Builder {
private KeyPair mSourceAccount;

/**
* Construct a new CreateAccount builder from a CreateAccountOp XDR.
* Construct a new ManageBuyOffer builder from a ManageBuyOfferOp XDR.
*
* @param op {@link CreateAccountOp}
* @param op {@link ManageBuyOfferOp}
*/
Builder(ManageBuyOfferOp op) {
selling = Asset.fromXdr(op.getSelling());
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/stellar/sdk/ManageSellOfferOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ public static class Builder {
private KeyPair mSourceAccount;

/**
* Construct a new CreateAccount builder from a CreateAccountOp XDR.
* @param op {@link CreateAccountOp}
* Construct a new ManageSellOffer builder from a ManageSellOfferOp XDR.
* @param op {@link ManageSellOfferOp}
*/
Builder(ManageSellOfferOp op) {
selling = Asset.fromXdr(op.getSelling());
Expand Down

0 comments on commit 34edeee

Please sign in to comment.