diff --git a/modules/Bio/EnsEMBL/DBSQL/RepeatFeatureAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/RepeatFeatureAdaptor.pm
index bc282339b62d12c2600765a3092dab681e3262d1..4e8363faf46ae676ab53d479ba9f7497fc5b96c2 100644
--- a/modules/Bio/EnsEMBL/DBSQL/RepeatFeatureAdaptor.pm
+++ b/modules/Bio/EnsEMBL/DBSQL/RepeatFeatureAdaptor.pm
@@ -62,8 +62,8 @@ use vars qw(@ISA);
   Arg [3]    : (optional) string/array $repeat_type
                Limits RepeatFeatures obtained to those of specified 
                repeat_type
-  Example    : @rfeats = @{$rfa->fetch_all_by_Slice($slice, undef, 'LTR')};
-               @rfeats = @{$rfa->fetch_all_by_Slice($slice, undef, ['Type II Transposons' 'RNA repeats'])};
+  Example    : @rfeats = @{$rfa->fetch_all_by_Slice($slice, undef, 'Type II Transposons')};
+               @rfeats = @{$rfa->fetch_all_by_Slice($slice, undef, ['Type II Transposons', 'RNA repeats'])};
   Description: Retrieves repeat features overlapping the area designated by
                the provided slice argument.  Returned features will be in
                in the same coordinate system as the provided slice and will
diff --git a/modules/Bio/EnsEMBL/Slice.pm b/modules/Bio/EnsEMBL/Slice.pm
index c01db2c187e9d9157e42c9fef3961979c75f45ab..3b89df2b47c84b5fda874ffee17c0cb1ec644d7b 100644
--- a/modules/Bio/EnsEMBL/Slice.pm
+++ b/modules/Bio/EnsEMBL/Slice.pm
@@ -1528,7 +1528,7 @@ sub get_all_SimpleFeatures {
                to limit by more than one
   Arg [3]    : (optional) string $db
                Key for database e.g. core/vega/cdna/....
-  Example    : @repeat_feats = @{$slice->get_all_RepeatFeatures(undef,'LTR')};
+  Example    : @repeat_feats = @{$slice->get_all_RepeatFeatures(undef,'Type II Transposons')};
   Description: Retrieves the RepeatFeatures which overlap  with
                logic name $logic_name and with score above $score.  If
                $logic_name is not defined features of all logic names are