Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ guv Documentation

.. note::

The documentation is currently in very active developemnt and not yet
The documentation is currently in very active development and not yet
complete. Please keep checking back for updates and filing issues for
missing sections or suggestions for enhancement.

Expand Down
6 changes: 3 additions & 3 deletions guv/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def set_exception(self, exception):
def get(self, block=True, timeout=None):
"""Return the stored value or raise the exception.

If this instance already holds a value / an exception, return / raise it immediatelly.
If this instance already holds a value / an exception, return / raise it immediately.
Otherwise, block until another greenlet calls :meth:`set` or :meth:`set_exception` or
until the optional timeout occurs.

Expand Down Expand Up @@ -463,14 +463,14 @@ def get(self, block=True, timeout=None):
def get_nowait(self):
"""Return the value or raise the exception without blocking.

If nothing is available, raise :class:`gevent.Timeout` immediatelly.
If nothing is available, raise :class:`gevent.Timeout` immediately.
"""
return self.get(block=False)

def wait(self, timeout=None):
"""Block until the instance is ready.

If this instance already holds a value / an exception, return immediatelly.
If this instance already holds a value / an exception, return immediately.
Otherwise, block until another thread calls :meth:`set` or :meth:`set_exception` or
until the optional timeout occurs.

Expand Down
2 changes: 1 addition & 1 deletion guv/util/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def runcall(self, func, *args, **kw):

def trace_dispatch_return_extend_back(self, frame, t):
"""A hack function to override error checking in parent class. It
allows invalid returns (where frames weren't preveiously entered into
allows invalid returns (where frames weren't previously entered into
the profiler) which can happen for all the tasklets that suddenly start
to get monitored. This means that the time will eventually be attributed
to a call high in the chain, when there is a tasklet switch
Expand Down