Fix syntax errors in QL comments

This commit is contained in:
Chuan-kai Lin
2022-04-28 11:53:36 -07:00
parent bb049bffbd
commit d6f0bbb816
17 changed files with 23 additions and 23 deletions

View File

@@ -390,7 +390,7 @@ private class HttpHeadersModel extends SummaryModelCsv {
}
/**
* Model MultivaluedMap, which extends Map<K, List<V>> and provides a few extra helper methods.
* Model MultivaluedMap, which extends `Map<K, List<V>>` and provides a few extra helper methods.
*/
private class MultivaluedMapModel extends SummaryModelCsv {
override predicate row(string row) {

View File

@@ -64,7 +64,7 @@ class SpringEntry extends SpringXmlElement {
/**
* Gets the bean pointed to by either the `value-ref` attribute, or a nested
* `<ref> or `<idref>` element, whichever is present.
* `<ref>` or `<idref>` element, whichever is present.
*/
SpringBean getValueRefBean() {
if this.hasValueRefString()

View File

@@ -15,7 +15,7 @@ import java
/**
* The Java class `android.R.string` specific to Android applications, which contains references to application specific resources defined in /res/values/strings.xml.
* For example, <resources>...<string name="host">example.com</string>...</resources> in the application com.example.android.web can be referred as R.string.host with the type com.example.android.web.R$string
* For example, `<resources>...<string name="host">example.com</string>...</resources>` in the application com.example.android.web can be referred as R.string.host with the type com.example.android.web.R$string
*/
class AndroidRString extends RefType {
AndroidRString() { this.hasQualifiedName(_, "R$string") }