Skip to content

Commit d2f666a

Browse files
authored
Merge pull request #230 from jbampton/fix-spelling
misc: fix spelling
2 parents 7ee18e7 + 35c55b0 commit d2f666a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

extras/vim/vimarc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def mergePipeAndInteract(self, pipe):
2424
finally:
2525
tty.tcsetattr(self.STDIN_FILENO, tty.TCSAFLUSH, mode)
2626

27-
def __interact_writen(self, fd, data):
27+
def __interact_written(self, fd, data):
2828
while data != '' and self.isalive():
2929
n = os.write(fd, data)
3030
data = data[n:]
@@ -57,10 +57,10 @@ def __merge_copy(self, pipe):
5757
os.write(self.STDOUT_FILENO, data)
5858
if self.STDIN_FILENO in r:
5959
data = self.__interact_read(self.STDIN_FILENO)
60-
self.__interact_writen(self.child_fd, data)
60+
self.__interact_written(self.child_fd, data)
6161
if pipe in r:
6262
data = self.__interact_read(pipe)
63-
self.__interact_writen(self.child_fd, data)
63+
self.__interact_written(self.child_fd, data)
6464

6565
f = Funnel(lispCmd, logfile=sys.stdout)
6666
pipe = open(pipeLoc, "r+")

lib/math.arc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ using gaussian elimination and returns a list of x's (N.B. not efficient for lar
335335

336336

337337
(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"
339339
(withs (u (rand)
340340
v (* 1.7156 (- (rand) 0.5))
341341
x (- u 0.449871)

0 commit comments

Comments
 (0)