fix: correct typo in log message

Christian Rocha created

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>

Change summary

internal/lsp/client.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/lsp/client.go 🔗

@@ -345,7 +345,7 @@ func (c *Client) CloseAllFiles(ctx context.Context) {
 			slog.Debug("Closing file", "file", uri)
 		}
 		if err := c.client.NotifyDidCloseTextDocument(ctx, uri); err != nil {
-			slog.Warn("Error closing rile", "uri", uri, "error", err)
+			slog.Warn("Error closing file", "uri", uri, "error", err)
 			continue
 		}
 		c.openFiles.Del(uri)