Skip to content

Commit

Permalink
SumProfit() -> sumProfit() (#3)
Browse files Browse the repository at this point in the history
closes #2
  • Loading branch information
smgladkovskiy authored Aug 9, 2021
1 parent 6c8bfe2 commit 887d557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
type AccountInterface interface {
// AddFunds Позволяет внести на счёт сумму sum
AddFunds(sum float64) error
// SumProfit Рассчитывает процент по вкладу и полученные деньги вносит на счёт
SumProfit() error
// sumProfit Рассчитывает процент по вкладу и полученные деньги вносит на счёт
sumProfit() error
// Withdraw Производит списание со счёта по указанным правилам. Если списание выходит за рамки правил, выдаёт ошибку
Withdraw(sum float64) error
// GetCurrency Выдаёт валюту счёта
Expand Down

0 comments on commit 887d557

Please sign in to comment.