Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 413fa3d

Browse files
committed
spelling: access
Signed-off-by: Josh Soref <[email protected]>
1 parent a327802 commit 413fa3d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/ql/src/experimental/Best Practices/WrongUintAccess.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @id cpp/wrong-uint-access
33
* @name Wrong Uint
4-
* @descripion Acess an array of size lower than 256 with a uint16.
4+
* @descripion Access an array of size lower than 256 with a uint16.
55
* @kind problem
66
* @problem.severity recommendation
77
* @tags efficiency
@@ -21,5 +21,5 @@ where
2121
) and
2222
defLine.getArraySize() <= 256
2323
select useExpr,
24-
"Using a " + useExpr.getArrayOffset().getType() + " to acess the array $@ of size " +
24+
"Using a " + useExpr.getArrayOffset().getType() + " to access the array $@ of size " +
2525
defLine.getArraySize() + ".", var, var.getName()

0 commit comments

Comments
 (0)