File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def mergePipeAndInteract(self, pipe):
24
24
finally :
25
25
tty .tcsetattr (self .STDIN_FILENO , tty .TCSAFLUSH , mode )
26
26
27
- def __interact_writen (self , fd , data ):
27
+ def __interact_written (self , fd , data ):
28
28
while data != '' and self .isalive ():
29
29
n = os .write (fd , data )
30
30
data = data [n :]
@@ -57,10 +57,10 @@ def __merge_copy(self, pipe):
57
57
os .write (self .STDOUT_FILENO , data )
58
58
if self .STDIN_FILENO in r :
59
59
data = self .__interact_read (self .STDIN_FILENO )
60
- self .__interact_writen (self .child_fd , data )
60
+ self .__interact_written (self .child_fd , data )
61
61
if pipe in r :
62
62
data = self .__interact_read (pipe )
63
- self .__interact_writen (self .child_fd , data )
63
+ self .__interact_written (self .child_fd , data )
64
64
65
65
f = Funnel (lispCmd , logfile = sys .stdout )
66
66
pipe = open (pipeLoc , "r+" )
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ using gaussian elimination and returns a list of x's (N.B. not efficient for lar
335
335
336
336
337
337
(def gauss-random (sigma (o mu 0))
338
- "gausian distributed random with width sigma around mu"
338
+ "gaussian distributed random with width sigma around mu"
339
339
(withs (u (rand)
340
340
v (* 1.7156 (- (rand) 0.5))
341
341
x (- u 0.449871)
You can’t perform that action at this time.
0 commit comments