assistant: Use a more generic icon for the `/docs` command (#14247)

Marshall Bowers created

This PR updates the `/docs` slash command to use a more generic icon to
convey docs.

It was still using the Rust icon, a relic of when it was still
`/rustdoc`.

Release Notes:

- N/A

Change summary

crates/assistant/src/slash_command/docs_command.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/assistant/src/slash_command/docs_command.rs 🔗

@@ -216,7 +216,7 @@ impl SlashCommand for DocsSlashCommand {
                 text,
                 sections: vec![SlashCommandOutputSection {
                     range,
-                    icon: IconName::FileRust,
+                    icon: IconName::FileDoc,
                     label: format!("docs ({provider}): {path}",).into(),
                 }],
                 run_commands_in_text: false,