@@ -15,30 +15,30 @@ private newtype TBufferWriteEstimationReason =
1515 TValueFlowAnalysis ( )
1616
1717/**
18- * A reason for a specific buffer write size estimate
18+ * A reason for a specific buffer write size estimate.
1919 */
2020abstract class BufferWriteEstimationReason extends TBufferWriteEstimationReason {
2121 /**
22- * Returns the name of the concrete class
22+ * Returns the name of the concrete class.
2323 */
2424 abstract string toString ( ) ;
2525
2626 /**
27- * Returns a human readable representation of this reason
27+ * Returns a human readable representation of this reason.
2828 */
2929 abstract string getDescription ( ) ;
3030
3131 /**
3232 * Combine estimate reasons. Used to give a reason for the size of a format string
33- * conversion given reasons coming from its individual specifiers
33+ * conversion given reasons coming from its individual specifiers.
3434 */
3535 abstract BufferWriteEstimationReason combineWith ( BufferWriteEstimationReason other ) ;
3636}
3737
3838/**
3939 * No particular reason given. This is currently used for backward compatibility so that
4040 * classes derived from BufferWrite and overriding getMaxData\0 still work with the
41- * queries as intended
41+ * queries as intended.
4242 */
4343class NoSpecifiedEstimateReason extends BufferWriteEstimationReason , TNoSpecifiedEstimateReason {
4444 override string toString ( ) { result = "NoSpecifiedEstimateReason" }
@@ -54,7 +54,7 @@ class NoSpecifiedEstimateReason extends BufferWriteEstimationReason, TNoSpecifie
5454
5555/**
5656 * The estimation comes from rough bounds just based on the type (e.g.
57- * `0 <= x < 2^32` for an unsigned 32 bit integer)
57+ * `0 <= x < 2^32` for an unsigned 32 bit integer).
5858 */
5959class TypeBoundsAnalysis extends BufferWriteEstimationReason , TTypeBoundsAnalysis {
6060 override string toString ( ) { result = "TypeBoundsAnalysis" }
0 commit comments