Versioned documentation typo (Thanks aragonne)

This commit is contained in:
Will Rossiter 2013-07-19 18:14:53 +12:00
parent bed25a7a79
commit 58a2eb0155

View File

@ -59,8 +59,8 @@ You can explicitly request a certain stage through various getters on the `Versi
$liveRecords = Versioned::get_by_stage('MyRecord', 'Live');
// Fetching a single record
$stageRecord = Versioned::get_one_by_stage('MyRecord', 'Stage')->byID(99);
$liveRecord = Versioned::get_one_by_stage('MyRecord', 'Live')->byID(99);
$stageRecord = Versioned::get_by_stage('MyRecord', 'Stage')->byID(99);
$liveRecord = Versioned::get_by_stage('MyRecord', 'Live')->byID(99);
### Historical Versions