about summary refs log tree commit homepage
path: root/lib/dtas/partstats.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dtas/partstats.rb')
-rw-r--r--lib/dtas/partstats.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dtas/partstats.rb b/lib/dtas/partstats.rb
index bc13480..7019b3d 100644
--- a/lib/dtas/partstats.rb
+++ b/lib/dtas/partstats.rb
@@ -8,14 +8,14 @@ require_relative 'sigevent'
 
 # backend for the dtas-partstats(1) command
 # Unlike the stuff for dtas-player, dtas-partstats is fairly tied to sox
-class DTAS::PartStats
+class DTAS::PartStats # :nodoc:
   CMD = 'sox "$INFILE" -n $TRIMFX $SOXFX stats $STATSOPTS'
   include DTAS::Process
   include DTAS::SpawnFix
   attr_reader :key_idx
   attr_reader :key_width
 
-  class TrimPart < Struct.new(:tbeg, :tlen, :rate)
+  class TrimPart < Struct.new(:tbeg, :tlen, :rate) # :nodoc:
     def sec
       tbeg / rate
     end