1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 21:02:41 +01:00

Add a comma to the end of an array element, to follow our convention.

Summary:
Was missing a ',' at the end of a one-element array. Whoops.

Test Plan:
It's a freaking comma. :P

Reviewers:
epriestley

CC:

Differential Revision: 541
This commit is contained in:
Ricky Elrod 2011-06-27 04:16:36 -04:00 committed by epriestley
parent 14d35b8171
commit e24f8b31ad

View file

@ -34,7 +34,7 @@ class ConduitAPI_paste_info_Method extends ConduitAPIMethod {
public function defineErrorTypes() {
return array(
'ERR_BAD_PASTE' => 'No such paste exists'
'ERR_BAD_PASTE' => 'No such paste exists',
);
}