Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nullptr authored Nov 22, 2024
1 parent 7a312b6 commit d441a0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: checkout repository
uses: actions/checkout@v2
with:
ref: 'dev' # should be main later
ref: 'main'

- name: install dependencies
run: sudo apt-get install doxygen graphviz -y
Expand Down
2 changes: 1 addition & 1 deletion sscma/core/engine/ma_engine_halio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ ma_err_t EngineHalio::load(const string& model_path) {
return MA_EINVAL;
}
float threshold = *static_cast<float*>(data);
auto tsr = this_ptr->_model->input(name);
auto tsr = this_ptr->_model->output(name);
if (!tsr) {
return MA_FAILED;
}
Expand Down

0 comments on commit d441a0e

Please sign in to comment.