From e96f8d2f123c8992b4dd690b13d95632a35b306a Mon Sep 17 00:00:00 2001 From: mahlon Date: Fri, 12 May 2023 06:45:38 +0000 Subject: [PATCH] Fix whitespace. FossilOrigin-Name: 5a440436f11f6675f563e00fcda46feafbb83ec461a7ce006ff331202b557faf --- theremin/lib/theremin.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/theremin/lib/theremin.rb b/theremin/lib/theremin.rb index a61f68a..ac8d9b5 100755 --- a/theremin/lib/theremin.rb +++ b/theremin/lib/theremin.rb @@ -145,19 +145,19 @@ class Theremin end # Delegate various methods directly to the underlying synth instance. - def_delegators :@synth, :gain, :glide, :load, :reverb, :chorus, :instrument + def_delegators :@synth, :gain, :glide, :load, :reverb, :chorus, :instrument # The names of the GPIO pins. attr_reader :pins # The Fluidsynth instance. - attr_reader :synth + attr_reader :synth # An IO to stream to espeak. - attr_reader :speech_io + attr_reader :speech_io # Is this Theremin currently running? - attr_reader :running + attr_reader :running ### Start polling the GPIO for measurements.