wp_insert_term does not insert description. [closed]

I was having the same problem the other day, due to a completely different typo 😉

$args = array(  
    'description' =>"My Desc",
    'slug' => "My Slug",
    'parent' => 0   
);  
$result = wp_insert_term("Term1", "category", $args);

Note the corrected ‘description’ element in the $args array.