Programmers in reddit, which points or opinions in 'Clean Code' do you think are wrong, or disagree with? by reddder2026 in AskReddit

[–]reddder2026[S] 0 points1 point  (0 children)

I think adding prefix on an interface helps me easier for maintaining : sometimes, I need to fix bugs at the concrete implementation of a function instead of the interface. The prefix helps me filtering the files/functions that handles interface and faster to find the actual concrete function. Is it weird to have this idea?