spelling: filt

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2021-03-03 20:21:51 -05:00
parent 78382ccbea
commit 4faadb7406
3 changed files with 3 additions and 3 deletions

View File

@ -274,7 +274,7 @@ Namespace string of the componentElement
.PP
.SS "List<String> gov\&.nasa\&.jpl\&.componentaction\&.ISFComponent\&.getPortDataList ()"
Creates a list of strings based off the data type from filitList values
Creates a list of strings based off the data type from filtList values
.PP
\fBReturns:\fP
.RS 4

View File

@ -353,7 +353,7 @@ public class ISFComponent {
}
/**
* Creates a list of strings based off the data type from filitList values
* Creates a list of strings based off the data type from filtList values
* @return A list of data type strings
*/
public List<String> getPortDataList() {

View File

@ -61,7 +61,7 @@ def main():
['/{}'.format(correction) for correction in defunct_files]
corrections_out = ['"{}'.format(correction) for correction in corrected] + \
['/{}'.format(correction) for correction in corrected]
full_files = [os.path.join(path, fle) for path, _, files in os.walk(directory) for fle in files]
full_files = [os.path.join(path, file) for path, _, files in os.walk(directory) for file in files]
mappings = list(zip(corrections_out, corrections_in))
#for inin, outout in mappings:
# print("{} -> {}".format(inin, outout))