Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TOO_MANY_TAB #50

Closed
0alfa opened this issue Apr 17, 2023 · 0 comments · Fixed by #52
Closed

TOO_MANY_TAB #50

0alfa opened this issue Apr 17, 2023 · 0 comments · Fixed by #52

Comments

@0alfa
Copy link

0alfa commented Apr 17, 2023

example, 1 tab difference:

    ft_fprintf(2, "\r%d/%d %ld %ld", i + 1, g->w.y, (t_u64)m, (t_u64)g->b.z);

c_formatter_42:

		ft_fprintf(2, "\r%d/%d %ld %ld", i + 1, g->w.y, (t_u64)m,
				(t_u64)g->b.z);

should be:

		ft_fprintf(2, "\r%d/%d %ld %ld", i + 1, g->w.y, (t_u64)m,
			(t_u64)g->b.z);

example, 2 tab difference:

      z                   = (t_v2d){g->b.rs + ((t_f64)j / g->w.x) * (g->b.re - g->b.rs),
                                    g->b.is + ((t_f64)i / g->w.y) * (g->b.ie - g->b.is)};

c_formatter_42:

			z = (t_v2d){g->b.rs + ((t_f64)j / g->w.x) * (g->b.re - g->b.rs),
						g->b.is + ((t_f64)i / g->w.y) * (g->b.ie - g->b.is)};

should be:

			z = (t_v2d){g->b.rs + ((t_f64)j / g->w.x) * (g->b.re - g->b.rs),
				g->b.is + ((t_f64)i / g->w.y) * (g->b.ie - g->b.is)};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant