use aviable not variable string (Mint ARK for Existing Work) authored by Johannes Frenzel's avatar Johannes Frenzel
......@@ -8,7 +8,7 @@ Run the following from the Rails console.
```ruby
dataset_id = '73666519p'
d = Dataset.find('dataset_id')
d = Dataset.find(dataset_id)
d.register_ark
```
......@@ -16,6 +16,6 @@ d.register_ark
```ruby
crc_dataset_id = 'h415pb224'
d = CrcDataset.find('crc_dataset_id')
d = CrcDataset.find(crc_dataset_id)
d.register_ark
```
\ No newline at end of file