Skip to content

Commit b8b911d

Browse files
committed
Whitespace and case fix
1 parent 67b3de4 commit b8b911d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Create a Topic:
2222

2323
Set the Topic's Display Name (required):
2424

25-
$result = $AmazonSNS->SetTopicAttributes($topicArn, 'DisplayName', 'My SNS Topic Display Name');
26-
25+
$result = $AmazonSNS->setTopicAttributes($topicArn, 'DisplayName', 'My SNS Topic Display Name');
26+
2727
Subscribe to this topic:
2828

2929
$AmazonSNS->subscribe($topicArn, 'email', 'example@github.com');

lib/amazonsns.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ public function setTopicAttributes($topicArn, $attrName, $attrValue)
373373

374374
$resultXml = $this->_request('SetTopicAttributes', array
375375
(
376-
'TopicArn' => $topicArn,
376+
'TopicArn' => $topicArn,
377377
'AttributeName' => $attrName,
378378
'AttributeValue' => $attrValue
379379
)

0 commit comments

Comments
 (0)