We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf0353 commit 696be8aCopy full SHA for 696be8a
patcher/stub/Stub.h
@@ -70,15 +70,15 @@ class Stub {
70
offset_t getParamValue(size_t id)
71
{
72
if (this->m_params.find(id) == m_params.end()) {
73
- //No param with givern ID
+ //No param with given ID
74
return INVALID_ADDR;
75
}
76
return this->m_params[id]->getValue();
77
78
79
bool setParam(size_t id, offset_t value) {
80
81
82
return false;
83
84
this->m_params[id]->setValue(value);
0 commit comments