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:
parent
14d35b8171
commit
e24f8b31ad
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class ConduitAPI_paste_info_Method extends ConduitAPIMethod {
|
||||||
|
|
||||||
public function defineErrorTypes() {
|
public function defineErrorTypes() {
|
||||||
return array(
|
return array(
|
||||||
'ERR_BAD_PASTE' => 'No such paste exists'
|
'ERR_BAD_PASTE' => 'No such paste exists',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue