Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo spelling grammar #927

Merged
merged 1 commit into from
Aug 18, 2021
Merged
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 Autocoders/Python/src/fprime_ac/utils/ParseC.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def ParseTypedefEnum(typename, filename, loadfile=True):
#
# Configure a parser to pickoff a typedef enumeration. This only works
# for named typedefs of enumerations. We are looking for 'typedef enum'
# followd by the typename.
# followed by the typename.

_ = Forward()

Expand Down
2 changes: 1 addition & 1 deletion Os/Pthreads/MaxHeap/test/ut/MaxHeapTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ int main() {
printf("Testing mixed priority...\n");
// For this test we expect things to come in fifo order
// for things of the same priority and in priority
// order for things of differend priorities.
// order for things of different priorities.
NATIVE_INT_TYPE pries[DEPTH] = {1, 7, 100, 1, 7};
NATIVE_INT_TYPE data2[DEPTH] = {4, 22, 99, 12344, 33};
NATIVE_INT_TYPE orderedPries[DEPTH] = {100, 7, 7, 1, 1};
Expand Down