Skip to content

Commit 68caa35

Browse files
committed
HummerOn and PullOff changes
1 parent b1e50c5 commit 68caa35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

techniques.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type Harmonic struct {
1010
Time float32
1111
}
1212

13-
func (h Harmonic) FretPosition() string {
13+
func (h Harmonic) TabSymbol() string {
1414
return fmt.Sprintf("<%d>", h.Fret)
1515
}
1616

@@ -76,11 +76,11 @@ type PullOff struct {
7676
Time float32
7777
}
7878

79-
func (p PullOff) FretPosition() string {
79+
func (p PullOff) TabSymbol() string {
8080
return fmt.Sprintf("%dp%d", p.FretFrom, p.FretTo)
8181
}
8282

83-
func (p PullOff) StringPosition() int {
83+
func (p PullOff) StringNumber() int {
8484
return p.String
8585
}
8686

0 commit comments

Comments
 (0)