What is incorrect in this CSS rule meant for making text bold?
p { font-weight: bolded; }
It should use font-style, not font-weight.
font-style
font-weight
font-weight cannot be applied to p elements.
p
The value bolded should be bold.
bolded
bold
The rule is missing a class or id selector.