Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a327802 commit 413fa3dCopy full SHA for 413fa3d
1 file changed
cpp/ql/src/experimental/Best Practices/WrongUintAccess.ql
@@ -1,7 +1,7 @@
1
/**
2
* @id cpp/wrong-uint-access
3
* @name Wrong Uint
4
- * @descripion Acess an array of size lower than 256 with a uint16.
+ * @descripion Access an array of size lower than 256 with a uint16.
5
* @kind problem
6
* @problem.severity recommendation
7
* @tags efficiency
@@ -21,5 +21,5 @@ where
21
) and
22
defLine.getArraySize() <= 256
23
select useExpr,
24
- "Using a " + useExpr.getArrayOffset().getType() + " to acess the array $@ of size " +
+ "Using a " + useExpr.getArrayOffset().getType() + " to access the array $@ of size " +
25
defLine.getArraySize() + ".", var, var.getName()
0 commit comments