Skip to content

Commit 065f52e

Browse files
committed
Code indentation.
1 parent 222015f commit 065f52e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/modules/spotify.reb

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ spotify: object [
2626
scope: ""
2727
port-id: 8989
2828
token: none
29-
get: func [what [any-string!]][request self 'GET what none]
30-
put: func [what [any-string!] /with data][request self 'PUT what data]
31-
del: func [what [any-string!]][request self 'DELETE what none]
29+
get: func [what [any-string!] ][request self 'GET what none]
30+
put: func [what [any-string!] /with data][request self 'PUT what data]
31+
del: func [what [any-string!] ][request self 'DELETE what none]
3232
request: none
3333
]
3434

@@ -40,7 +40,7 @@ authorize: function [
4040
ctx/request: :request
4141

4242
unless ctx/client-id [
43-
print ajoin ["*** `" value "` is needed to authorize with Spotify!"]
43+
print ajoin ["*** `client-id` is needed to authorize with Spotify!"]
4444
return none
4545
]
4646
unless string? ctx/client-id [ ctx/client-id: form ctx/client-id ]

0 commit comments

Comments
 (0)