Difference between glDrawBuffer and glDrawBuffers

Both appear to be defined in opengl 4.0 specifications and both “specify which color buffers are to be drawn into”.
Is the only difference that in glDrawBuffers we can specify multiple buffers at once?
i.e
GLenum x = GL_FRONT;
glDrawBuffers(1,&x) is same as glDrawBuffer(GL_FRONT)?

or is the difference that we can specify color attachment points in glDrawBuffers and cant do so in glDrawBuffer.

more practical explanation. in short, glDrawBuffers used to draw to multiple attachments. you can output different data for each rendertarget, using multiple fragment shader outputs.

you can google “opengl MRT”. ‘MRT’ stands for Multiple Render Targets