@@ -110,10 +110,9 @@ type RegistryCredentialsListServerRequest struct {
110
110
// a SQL statement. For example, in order to sort the
111
111
// RegistryCredentials descending by username the value should be:
112
112
//
113
- // [source,sql]
114
- // ----
113
+ // ```sql
115
114
// username desc
116
- // ----
115
+ // ```
117
116
//
118
117
// If the parameter isn't provided, or if the value is empty, then the order of the
119
118
// results is undefined.
@@ -133,10 +132,9 @@ func (r *RegistryCredentialsListServerRequest) Order() string {
133
132
// a SQL statement. For example, in order to sort the
134
133
// RegistryCredentials descending by username the value should be:
135
134
//
136
- // [source,sql]
137
- // ----
135
+ // ```sql
138
136
// username desc
139
- // ----
137
+ // ```
140
138
//
141
139
// If the parameter isn't provided, or if the value is empty, then the order of the
142
140
// results is undefined.
@@ -179,10 +177,9 @@ func (r *RegistryCredentialsListServerRequest) GetPage() (value int, ok bool) {
179
177
// of the names of the columns of a table. For example, in order to retrieve all the
180
178
// RegistryCredentials for a user the value should be:
181
179
//
182
- // [source,sql]
183
- // ----
180
+ // ```sql
184
181
// username = 'abcxyz...'
185
- // ----
182
+ // ```
186
183
//
187
184
// If the parameter isn't provided, or if the value is empty, then all the
188
185
// RegistryCredentials that the user has permission to see will be returned.
@@ -203,10 +200,9 @@ func (r *RegistryCredentialsListServerRequest) Search() string {
203
200
// of the names of the columns of a table. For example, in order to retrieve all the
204
201
// RegistryCredentials for a user the value should be:
205
202
//
206
- // [source,sql]
207
- // ----
203
+ // ```sql
208
204
// username = 'abcxyz...'
209
- // ----
205
+ // ```
210
206
//
211
207
// If the parameter isn't provided, or if the value is empty, then all the
212
208
// RegistryCredentials that the user has permission to see will be returned.
0 commit comments