Post Type Description for ‘Posts’

you can use global $wp_post_types to edit the description for example:

add_action('init' , 'edit_post_description');
function edit_post_description(){
    global $wp_post_types;
    $wp_post_types['post'] ->description = 'type your description here...';
}