Skip to content

Commit 5b9ae5e

Browse files
committed
Java: Update ql doc comments.
1 parent 8352925 commit 5b9ae5e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

java/ql/src/utils/model-generator/internal/CaptureTypeBasedSummaryModels.qll

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,14 +297,14 @@ class TypeBasedFlowTargetApi extends Specific::TargetApiSpecific {
297297
* Gets the string representation of all type based summaries for `this`
298298
* inspired by the Theorems for Free approach.
299299
*
300-
* Examples could be (see C# pseudo code below)
301-
* (1) `Get` returns a value of type `T`. We assume that the returned
300+
* Examples could be (see Java pseudo code below)
301+
* (1) `get` returns a value of type `T`. We assume that the returned
302302
* value was fetched from a (synthetic) field.
303-
* (2) `Set` consumes a value of type `T`. We assume that the value is stored in
303+
* (2) `set` consumes a value of type `T`. We assume that the value is stored in
304304
* a (synthetic) field.
305-
* (3) `Apply<S>` is assumed to apply the provided function to a value stored in
305+
* (3) `apply<S>` is assumed to apply the provided function to a value stored in
306306
* a (synthetic) field and return the result.
307-
* (4) `Apply<S1,S2>` is assumed to apply the provided function to provided value
307+
* (4) `apply<S1,S2>` is assumed to apply the provided function to provided value
308308
* and return the result.
309309
* ```java
310310
* public class MyGeneric<T> {

0 commit comments

Comments
 (0)