Skip to content

Commit

Permalink
Changed single quotes to double
Browse files Browse the repository at this point in the history
  • Loading branch information
asimlqt committed Apr 22, 2016
1 parent 6b17196 commit fd908c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Google/Spreadsheet/CellFeed.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public function createCell($row, $col, $value)
$link->addAttribute("type", "application/atom+xml");
$link->addAttribute("href", $this->getPostUrl() . "/R" . $row . "C" . $col);

$elementType = 'gs:cell';
$elementType = "gs:cell";
$entry->{$elementType} = $value;
$child = $entry->{$elementType};
$child->addAttribute("row", $row);
Expand Down

0 comments on commit fd908c6

Please sign in to comment.