CLEAN/DOC: fix typos

This commit is contained in:
Brian Wignall 2021-02-24 08:58:30 -05:00
parent 8b97feb3c0
commit 5735b92d2a
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
=======================
A flight software and embedded systems framework. This is the automatically generated API
documentation for the `fprime` python package. This package contains the necesssary types and setup
documentation for the `fprime` python package. This package contains the necessary types and setup
to write support code for F´ including both Autocoder functions and Ground Data System packages.
This package also provides the `fprime-util` command line utility used to help build F´ following

View File

@ -8,7 +8,7 @@ linters = pylint,pyflakes,radon
# You can configure the options for each of the tools pylama includes
[pylama:pylint]
# Conventions and Refactor recomendations are disabled for the CI system, but should be turned on when developing code
# Conventions and Refactor recommendations are disabled for the CI system, but should be turned on when developing code
# C0301 is line length, as long as you use black to format your code it will be perfect
# C0330 is incorrect hanging indent, this conflicts with black so we ignore it
# W0612 is for unused variables, pyflakes reports if a variable is assigned to and still unused which is more useful

View File

@ -26,7 +26,7 @@ setup(
# Package Description:
#
# Basic package information. Describes the package and the data contained inside. This
# information should match the F prime decription information.
# information should match the F prime description information.
####
name="fprime",
version="1.5.3",

View File

@ -86,7 +86,7 @@ class ArgNotFoundException(TypeException):
class NotInitializedException(TypeException):
""" Did not intialize types """
""" Did not initialize types """
def __init__(self, message):
super().__init__("Instance %s not initialized!" % message)