Skip to content

Commit 6c3ed6c

Browse files
committed
update alert-messages to follow the style-guide
1 parent 71da217 commit 6c3ed6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

swift/ql/src/queries/Security/CWE-311/CleartextStorageDatabase.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@ from CleartextStorageConfig config, DataFlow::PathNode sourceNode, DataFlow::Pat
105105
where config.hasFlowPath(sourceNode, sinkNode)
106106
select cleanupNode(sinkNode.getNode()), sourceNode, sinkNode,
107107
"This operation stores '" + sinkNode.getNode().toString() +
108-
"' in a database. It may contain unencrypted sensitive data from $@", sourceNode,
108+
"' in a database. It may contain unencrypted sensitive data from $@.", sourceNode,
109109
sourceNode.getNode().toString()

swift/ql/src/queries/Security/CWE-311/CleartextTransmission.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ from CleartextTransmissionConfig config, DataFlow::PathNode sourceNode, DataFlow
8282
where config.hasFlowPath(sourceNode, sinkNode)
8383
select sinkNode.getNode(), sourceNode, sinkNode,
8484
"This operation transmits '" + sinkNode.getNode().toString() +
85-
"', which may contain unencrypted sensitive data from $@", sourceNode,
85+
"', which may contain unencrypted sensitive data from $@.", sourceNode,
8686
sourceNode.getNode().toString()

0 commit comments

Comments
 (0)