about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-01-20 02:19:08 +0000
committerEric Wong <e@80x24.org>2015-01-20 02:19:08 +0000
commit9bf21db1e0ad815187b8c93ef985ef591a606645 (patch)
treef6e9148fbd57340545cfc61ad24f717a6e327f4f /lib
parent65bb4baf0e479ff7cfbf0a8422824834c9f06ab1 (diff)
downloaddtas-9bf21db1e0ad815187b8c93ef985ef591a606645.tar.gz
TrimFX was too ambiguous with the common environment variable we
use throughout dtas.  Since TFX is more limited in scope but
should be more frequently-typed by users (of -splitfx) we'll use
the shorter name here.
Diffstat (limited to 'lib')
-rw-r--r--lib/dtas/tfx.rb (renamed from lib/dtas/trimfx.rb)6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/dtas/trimfx.rb b/lib/dtas/tfx.rb
index 33b21ca..479ff5c 100644
--- a/lib/dtas/trimfx.rb
+++ b/lib/dtas/tfx.rb
@@ -7,7 +7,7 @@ require 'shellwords'
 
 # this will represent a trim section inside -splitfx for applying
 # effects to only a part of the output
-class DTAS::TrimFX
+class DTAS::TFX
   include DTAS::ParseTime
 
   attr_reader :tbeg
@@ -92,7 +92,7 @@ class DTAS::TrimFX
     end
   end
 
-  # sorts and converts an array of TrimFX objects into non-overlapping arrays
+  # sorts and converts an array of TFX objects into non-overlapping arrays
   # of epochs
   #
   # input:
@@ -139,7 +139,7 @@ class DTAS::TrimFX
     rv
   end
 
-  # like schedule, but fills in the gaps with pass-through (no-op) TrimFX objs
+  # like schedule, but fills in the gaps with pass-through (no-op) TFX objs
   # This does not change the number of epochs.
   def self.expand(ary, total_samples)
     rv = []