@@ -485,7 +485,7 @@ contract Margin is
485485 /**
486486 * Cancel an amount of a loan offering. Only callable by the loan offering's payer or signer.
487487 *
488- * @param addresses Array of addresses:
488+ * @param addresses Array of addresses:
489489 *
490490 * [0] = owedToken
491491 * [1] = heldToken
@@ -498,7 +498,7 @@ contract Margin is
498498 * [8] = loan lender fee token
499499 * [9] = loan taker fee token
500500 *
501- * @param values256 Values corresponding to:
501+ * @param values256 Values corresponding to:
502502 *
503503 * [0] = loan maximum amount
504504 * [1] = loan minimum amount
@@ -508,15 +508,15 @@ contract Margin is
508508 * [5] = loan expiration timestamp (in seconds)
509509 * [6] = loan salt
510510 *
511- * @param values32 Values corresponding to:
511+ * @param values32 Values corresponding to:
512512 *
513513 * [0] = loan call time limit (in seconds)
514514 * [1] = loan maxDuration (in seconds)
515515 * [2] = loan interest rate (annual nominal percentage times 10**6)
516516 * [3] = loan interest update period (in seconds)
517517 *
518- * @param cancelAmount Amount to cancel
519- * @return Amount that was canceled
518+ * @param cancelAmount Amount to cancel
519+ * @return Amount that was canceled
520520 */
521521 function cancelLoanOffering (
522522 address [10 ] addresses ,
@@ -565,7 +565,7 @@ contract Margin is
565565 * [5] = loan expiration timestamp (in seconds)
566566 * [6] = loan salt
567567 *
568- * @param values32 Values corresponding to:
568+ * @param values32 Values corresponding to:
569569 *
570570 * [0] = loan call time limit (in seconds)
571571 * [1] = loan maxDuration (in seconds)
@@ -590,9 +590,9 @@ contract Margin is
590590 }
591591
592592 /**
593- * Transfer ownership of a loan to a new address. This new address will be entitled
594- * to all payouts for this loan. Only callable by the lender for a position. If the "who"
595- * param is a contract, it must implement the LoanOwner interface.
593+ * Transfer ownership of a loan to a new address. This new address will be entitled to all
594+ * payouts for this loan. Only callable by the lender for a position. If "who" is a contract, it
595+ * must implement the LoanOwner interface.
596596 *
597597 * @param positionId Unique ID for the position
598598 * @param who New owner of the loan
@@ -612,8 +612,8 @@ contract Margin is
612612
613613 /**
614614 * Transfer ownership of a position to a new address. This new address will be entitled to all
615- * payouts. Only callable by the owner of a position. If the "who" param is a contract, it must
616- * implement the PositionOwner interface.
615+ * payouts. Only callable by the owner of a position. If "who" is a contract, it must implement
616+ * the PositionOwner interface.
617617 *
618618 * @param positionId Unique ID for the position
619619 * @param who New owner of the position
0 commit comments