Whether the Nginx «break» directive position is important inside a «location» block?

Whether the following blocks mean the same or not?

location ~ /.well-known {
	access_log off;
	expires max;
	root /var/www/lets-encrypt/mage2.pro;
	break;
}
location ~ /.well-known {
	access_log off;
	break;
	expires max;
	root /var/www/lets-encrypt/mage2.pro;
}

The directives order is NOT important, I have checked it my self.
The blocks above are the same.