fix comments

This commit is contained in:
amammad
2023-10-08 21:29:55 +02:00
parent 6c8cc79b4d
commit ad2631202d
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/**
* Provides classes modeling security-relevant aspects of the I/O write or read operations
* Provides classes modeling security-relevant aspects of the I/O file write or file read operations
*/
private import python

View File

@@ -179,7 +179,7 @@ module Starlette {
/**
* A call to the `baize.asgi.FileResponse` constructor as a sink for Filesystem access.
*
* it is not contained to Starlette source code but it is mentioned as an alternative to Starlette FileResponse
* it is not contained to Starlette source code but it is mentioned in documents as an alternative to Starlette FileResponse
*/
class BaizeFileResponseCall extends FileSystemAccess::Range, API::CallNode {
BaizeFileResponseCall() {

View File

@@ -1491,7 +1491,7 @@ private module StdlibPrivate {
/**
* A call to the `io.open_code` function.
* See https://docs.python.org/3/library/io.html#io.FileIO
* See https://docs.python.org/3.11/library/io.html#io.open_code
*/
private class OpenCodeCall extends FileSystemAccess::Range, API::CallNode {
OpenCodeCall() { this = API::moduleImport("io").getMember("open_code").getACall() }