Skip to content

Commit 678bf04

Browse files
committed
no message
1 parent ad2af40 commit 678bf04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reverse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package stringUtil
33

44
// Reverse returns its argument string reversed rune-wise left to right.
5-
func Reverse(s string) string {
5+
func Reverse(s string) string {
66
r := []rune(s)
77
for i, j := 0, len(r)-1; i < len(r)/2; i, j = i+1, j-1 {
88
r[i], r[j] = r[j], r[i]

0 commit comments

Comments
 (0)