@@ -173,7 +173,7 @@ pub fn generate_module_token_stream(
173
173
174
174
let operation_count = operations. len ( ) ;
175
175
176
- let mulutiple_operation = operation_count > 1 ;
176
+ let multiple_operations = operation_count > 1 ;
177
177
178
178
let mut schema_and_operations = Vec :: with_capacity ( operation_count) ;
179
179
@@ -184,7 +184,7 @@ pub fn generate_module_token_stream(
184
184
& operation,
185
185
response_derives. clone ( ) ,
186
186
deprecation_strategy. clone ( ) ,
187
- mulutiple_operation ,
187
+ multiple_operations ,
188
188
) ?;
189
189
let operation_name = Ident :: new ( operation. name . as_str ( ) , Span :: call_site ( ) ) ;
190
190
schema_and_operations. push ( ( schema_output, operation_name, operation. name . as_str ( ) ) ) ;
@@ -210,15 +210,15 @@ fn build_module_token_stream(
210
210
) -> TokenStream {
211
211
let mut schema_token_streams = vec ! [ ] ;
212
212
let mut trait_token_streams = vec ! [ ] ;
213
- let mulutiple_operation = schema_and_operations. len ( ) > 1 ;
213
+ let multiple_operations = schema_and_operations. len ( ) > 1 ;
214
214
for ( schema_output, operation_name, operation_name_literal) in schema_and_operations {
215
215
let ( schema_token_stream, trait_token_stream) = build_query_struct_token_stream (
216
216
& module_name,
217
217
struct_name. clone ( ) ,
218
218
& schema_output,
219
219
& operation_name,
220
220
operation_name_literal,
221
- mulutiple_operation ,
221
+ multiple_operations ,
222
222
) ;
223
223
schema_token_streams. push ( schema_token_stream) ;
224
224
trait_token_streams. push ( trait_token_stream) ;
@@ -261,15 +261,15 @@ fn build_query_struct_token_stream(
261
261
schema_output : & TokenStream ,
262
262
operation_name : & Ident ,
263
263
operation_name_literal : & str ,
264
- mulutiple_operation : bool ,
264
+ multiple_operations : bool ,
265
265
) -> ( TokenStream , TokenStream ) {
266
266
let struct_name = if struct_name. is_some ( ) {
267
267
struct_name. unwrap ( )
268
268
} else {
269
269
operation_name. clone ( )
270
270
} ;
271
271
272
- let ( respons_data_struct_name, variables_struct_name) = if mulutiple_operation {
272
+ let ( respons_data_struct_name, variables_struct_name) = if multiple_operations {
273
273
(
274
274
Ident :: new (
275
275
format ! ( "{}ResponseData" , operation_name_literal) . as_str ( ) ,
0 commit comments