Fixed typo in internals/ar.md.

This commit is contained in:
resurtm
2013-05-13 20:40:09 +06:00
parent a54c1cd684
commit 7fa9f113ee

View File

@ -28,13 +28,13 @@ public function scenarios()
// 4. insert and update operations will be wrapped with transaction, delete won't
'scenario4' => array(
'attributes' => array('attribute1', 'attribute2'),
'atomic' => array(self::INSERT, self::UPDATE),
'atomic' => array(self::OPERATION_INSERT, self::OPERATION_UPDATE),
),
// 5. insert and update operations won't be wrapped with transaction, delete will
'scenario5' => array(
'attributes' => array('attribute1', 'attribute2'),
'atomic' => array(self::DELETE),
'atomic' => array(self::OPERATION_DELETE),
),
);
}