From 5735b92d2a50456a685fea0b0ec6b6ea2f33f14d Mon Sep 17 00:00:00 2001 From: Brian Wignall Date: Wed, 24 Feb 2021 08:58:30 -0500 Subject: [PATCH] CLEAN/DOC: fix typos --- docs/index.rst | 2 +- pylama.cfg | 2 +- setup.py | 2 +- src/fprime/common/models/serialize/type_exceptions.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 1f9b187..e3a81f0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 diff --git a/pylama.cfg b/pylama.cfg index 6a02e71..cab8d85 100644 --- a/pylama.cfg +++ b/pylama.cfg @@ -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 diff --git a/setup.py b/setup.py index f108548..0e02cb6 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/src/fprime/common/models/serialize/type_exceptions.py b/src/fprime/common/models/serialize/type_exceptions.py index a13c56b..27d1be0 100644 --- a/src/fprime/common/models/serialize/type_exceptions.py +++ b/src/fprime/common/models/serialize/type_exceptions.py @@ -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)