Loose Indentation
#2

warning 217 loose indentation


Incorrect indentation:
PHP код:
public OnFilterScriptInit(){
    
    
printf("bla bla 1");
printf("bla bla 2"); //warning 217: loose indentation
    
return 1//warning 217: loose indentation

Correct indentation:
PHP код:
public OnFilterScriptInit(){
    
    
printf("bla bla 1");
    
printf("bla bla 2");
    return 
1;

Reply


Messages In This Thread
Loose Indentation - by Arcada23 - 20.05.2017, 15:58
Re: Loose Indentation - by AbyssMorgan - 20.05.2017, 15:59
Re: Loose Indentation - by Arcada23 - 20.05.2017, 16:10
Re: Loose Indentation - by Saddin - 20.05.2017, 16:12
Re: Loose Indentation - by Burridge - 20.05.2017, 16:47
Re: Loose Indentation - by Saddin - 20.05.2017, 16:52
Re: Loose Indentation - by Sew_Sumi - 20.05.2017, 19:32
Re: Loose Indentation - by RxErT - 20.05.2017, 19:37

Forum Jump:


Users browsing this thread: 4 Guest(s)