Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
freddii authored and gornostal committed Jan 24, 2021
1 parent 9d94b63 commit f4a36b7
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2_Bug_report.md
Expand Up @@ -13,7 +13,7 @@ about: Report a bug in Ulauncher
IF YOU ARE GETTING ISSUES INSTALLING EXTENSIONS, ENSURE YOU HAVE ALL
THE DEPENDENCIES (SEE THE GITHUB PAGE FOR THE EXTENSION).
Otherwise, please fill in the items bellow and submit a new issue.
Otherwise, please fill in the items below and submit a new issue.
-->

### Steps to reproduce
Expand Down
2 changes: 1 addition & 1 deletion docs/extensions/intro.rst
Expand Up @@ -26,7 +26,7 @@ Extension API v2 (current) enables extension developers to write **custom handle
"ti" is a keyword, the rest of the query is an argument in this case.

With Extension API it is possible to capture event when user enters "ti<Space>" into the input
and then render any results bellow the input box.
and then render any results below the input box.

Extensions can define preferences in ``manifest.json`` that can be overridden by a user
from Ulauncher Preferences window.
Expand Down
2 changes: 1 addition & 1 deletion docs/extensions/libs.rst
Expand Up @@ -2,7 +2,7 @@ Available Libraries
===================

Currently it's not possible to define python packages required for your extension.
However, libraries listed bellow are available to use in extensions since
However, libraries listed below are available to use in extensions since
they are required for Ulauncher and are pre-installed with the app.

In future we'll make it possible to support ``requirements.txt`` for extensions.
Expand Down
2 changes: 1 addition & 1 deletion docs/extensions/tutorial.rst
Expand Up @@ -90,7 +90,7 @@ Create :file:`manifest.json` using the following template::
* ``required_api_version`` - a version of Ulauncher Extension API that the extension requires. It should follow `NPM Semver <https://docs.npmjs.com/misc/semver>`_ format. In most of the cases you would want to specify a string like ``^x.y.z`` where ``x.y.z`` is the current version of extension API (not Ulauncher). You can find the current version number on the About page of Ulauncher preferences.
* ``name``, ``description``, ``developer_name`` can be anything you like but not an empty string
* ``icon`` - relative path to an extension icon
* ``options`` - dictionary of optional parameters. See available options bellow
* ``options`` - dictionary of optional parameters. See available options below
* ``preferences`` - list of preferences available for users to override.
They are rendered in Ulauncher preferences in the same order they are listed in manifest.

Expand Down
2 changes: 1 addition & 1 deletion scripts/help.sh
Expand Up @@ -7,7 +7,7 @@ help () {
${dim}Installs Ulauncher data (icons, static files for preferences, etc.) to '~/.local/share/ulauncher/'${normal}
${bold}./ul cleanup-dev-evn
${dim}Removes files installed by './ul init-dev-env'. Also removes chache files, but not configs${normal}
${dim}Removes files installed by './ul init-dev-env'. Also removes cache files, but not configs${normal}
${bold}./ul run
${dim}Alias for './bin/ulauncher -v --dev'
Expand Down
2 changes: 1 addition & 1 deletion scripts/make-release.sh
Expand Up @@ -94,7 +94,7 @@ launchpad_upload() {
groovy="PPA=$PPA RELEASE=groovy ./ul build-deb $VERSION --upload"

# extracts ~/.shh for uploading package to ppa.launchpad.net via sftp
# then uploads each realease
# then uploads each release
h1 "Launchpad upload"
set -x
docker run \
Expand Down
2 changes: 1 addition & 1 deletion ulauncher/main.py
Expand Up @@ -133,7 +133,7 @@ def except_hook(exctype, value, tb):
if Settings.get_instance().get_property('show-indicator-icon'):
AppIndicator.get_instance().show()

# workaround to make Ctrl+C quiting the app
# workaround to make Ctrl+C quitting the app
signal_handler = SignalHandler(window)
gtk_thread = run_async(Gtk.main)()
try:
Expand Down
4 changes: 2 additions & 2 deletions ulauncher/utils/SortedCollection.py
Expand Up @@ -25,7 +25,7 @@ class SortedCollection:
Finding and indexing are O(log n) operations while iteration and insertion
are O(n). The initial sort is O(n log n).
The key function is stored in the 'key' attibute for easy introspection or
The key function is stored in the 'key' attribute for easy introspection or
so that you can assign a new key function (triggering an automatic re-sort).
In short, the class was designed to handle all of the common use cases for
Expand Down Expand Up @@ -157,7 +157,7 @@ def pop(self, index=-1):
self._items.pop(index)

def remove(self, item):
'Remove first occurence of item. Raise ValueError if not found'
'Remove first occurrence of item. Raise ValueError if not found'
i = self.index(item)
del self._keys[i]
del self._items[i]
Expand Down
2 changes: 1 addition & 1 deletion ulauncher/utils/semver.py
Expand Up @@ -493,7 +493,7 @@ def inc(self, release, identifier=None):
self.patch += 1
self.prerelease = []
elif release == "pre":
# This probably shouldn't be used publically.
# This probably shouldn't be used publicly.
# 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction.
logger.debug("inc prerelease %s", self.prerelease)
if len(self.prerelease) == 0:
Expand Down
2 changes: 1 addition & 1 deletion ulauncher/utils/setup_logging.py
Expand Up @@ -7,7 +7,7 @@
# The background is set with 40 plus the number of the color, and the foreground with 30
BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)

# These are the sequences need to get colored ouput
# These are the sequences need to get colored output
RESET_SEQ = "\033[0m"
COLOR_SEQ = "\033[1;%dm"
BOLD_SEQ = "\033[1m"
Expand Down

0 comments on commit f4a36b7

Please sign in to comment.