Skip to content

Commit 696be8a

Browse files
authored
[NOBIN] Fixed typo in the comment
1 parent 3cf0353 commit 696be8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

patcher/stub/Stub.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ class Stub {
7070
offset_t getParamValue(size_t id)
7171
{
7272
if (this->m_params.find(id) == m_params.end()) {
73-
//No param with givern ID
73+
//No param with given ID
7474
return INVALID_ADDR;
7575
}
7676
return this->m_params[id]->getValue();
7777
}
7878

7979
bool setParam(size_t id, offset_t value) {
8080
if (this->m_params.find(id) == m_params.end()) {
81-
//No param with givern ID
81+
//No param with given ID
8282
return false;
8383
}
8484
this->m_params[id]->setValue(value);

0 commit comments

Comments
 (0)